octave學習筆記

octave 學習筆記

記錄使用octave的總結。

文件IO

save和·load

load

用法

load file
load options file
load options file v1 v2 …
S = load ("options", "file", "v1", "v2", …)
load file options
load file options v1 v2 …
S = load ("file", "options", "v1", "v2", …)

load可以加載特定格式的h5文件,似乎h5文件中數據格式是自定義的話,就沒法正確加載,報錯load: error while reading hdf5 item xxxxx

load <filename>
load("-hdf5",<filename>)

一個有用的網址,關於HDF-EOS (Hierarchical Data Format - Earth Observing System)的介紹。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章