octave学习笔记

octave

  • octave 学习笔记
    • 文件IO
      • load

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 
load("-hdf5",)

一个有用的网址,关于HDF-EOS (Hierarchical Data Format - Earth Observing System)的介绍。

你可能感兴趣的:(octave)