机器学习-Octave简易教程(2) 發表於 2018-06-10 | 更新於 2018-06-24 | 分類於 Math , Machine Learning , Octave | 評論數: | 閱讀次數: | 字數:190 字 Octave基本教程 > [1,2,3] * [3;2;1]ans = 10> [1,2,3] .* [3;2;1]ans = 3 6 9 2 4 6 1 2 3 数据操作从文件加载数据> cd xxx/xxx/xxx # 到你存放数据文件的目录> ls # 查看当前目录下的文件ex1data1.txt ex1data2.txt> load ex1data1.txt # 加载该文件数据,或者:> load('ex1data1.txt') 检查当前数据> whoVariables in the current scope:a ans b ex1data1> whosVariables in the current scope: Attr Name Size Bytes Class ==== ==== ==== ===== ===== a 3x3 72 double ans 1x73 73 char b 3x3 72 double ex1data1 97x2 1552 doubleTotal is 285 elements using 1769 bytes 清除数据> clear a # 只清除a> whosVariables in the current scope: Attr Name Size Bytes Class ==== ==== ==== ===== ===== ans 1x73 73 char b 3x3 72 double ex1data1 97x2 1552 doubleTotal is 276 elements using 1697 bytes> clear # 清除全部> whos # 什么都没有 选取数据>