Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Coordinate | |
export Rect2d | |
mutable struct Rect2d{T} | |
x :: T | |
y :: T | |
end | |
function Base.:+(coordinate_left::Rect2d{T}, coordinate_right::Rect2d{T}) where T <: Core.Number |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!gfortran, gcc version 7.4.0 | |
!reference: https://qiita.com/implicit_none/items/08f894bc851c29b40b58#%E4%BB%AE%E5%BC%95%E6%95%B0 | |
program test_20200904_01 | |
use, intrinsic :: iso_fortran_env | |
implicit none | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
! ================================================================================================================================== | |
! ISBN 978-4-06-152926-7 | |
! ガウス過程と機械学習 | |
! | |
! [reference] | |
! http://chasen.org/~daiti-m/gpbook/python/lm.py | |
! http://chasen.org/~daiti-m/gpbook/data/nonlinear.dat | |
! https://nbviewer.jupyter.org/gist/genkuroki/a37894d5669ad13b4cd27da16096bfd2 | |
! https://gihyo.jp/book/2015/978-4-7741-7506-5 | |
! ================================================================================================================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ================================================================================================================================== | |
# ISBN 978-4-06-152926-7 | |
# ガウス過程と機械学習 | |
# | |
# [reference] | |
# http://chasen.org/~daiti-m/gpbook/python/lm.py | |
# http://chasen.org/~daiti-m/gpbook/data/nonlinear.dat | |
# https://nbviewer.jupyter.org/gist/genkuroki/a37894d5669ad13b4cd27da16096bfd2 | |
# https://github.com/JuliaData/CSV.jl/issues/371 <- `ignorerepeated = true` | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
! ================================================================================================================================== | |
! ISBN 978-4-06-152926-7 | |
! ガウス過程と機械学習 | |
! | |
! [reference] | |
! http://chasen.org/~daiti-m/gpbook/python/linear.py | |
! http://chasen.org/~daiti-m/gpbook/data/linear.dat | |
! https://nbviewer.jupyter.org/gist/genkuroki/a37894d5669ad13b4cd27da16096bfd2 | |
! http://www.caero.mech.tohoku.ac.jp/publicData/Daiguji/ | |
! ================================================================================================================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ================================================================================================================================== | |
# ISBN 978-4-06-152926-7 | |
# ガウス過程と機械学習 | |
# | |
# [reference] | |
# http://chasen.org/~daiti-m/gpbook/python/linear.py | |
# http://chasen.org/~daiti-m/gpbook/data/linear.dat | |
# https://nbviewer.jupyter.org/gist/genkuroki/a37894d5669ad13b4cd27da16096bfd2 | |
# | |
# [How to execute] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ================================================================================================================================== | |
# ISBN 978-4-06-152926-7 | |
# ガウス過程と機械学習 | |
# [reference] | |
# http://chasen.org/~daiti-m/gpbook/python/linear.py | |
# http://chasen.org/~daiti-m/gpbook/data/linear.dat | |
# ================================================================================================================================== | |
module ISBN9784061529267 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{- reference -} | |
-- ISBN978-4-320-01343-8 | |
-- http://lqtmirage.hatenablog.com/entry/2017/05/29/125134 | |
{- module to import -} | |
import Prelude | |