1. 读入csv数据
matlab中可以用csvread()函数读入以“,”为分割的csv数据文件,其语法为:
① M = csvread(filename)
② M = csvread(filename,R1,C1)
③ M = csvread(filename,R1,C1,[R1 C1 R2 C2])
其中①将文件数据全部读入,②、③则将文件内容选择读入。具体地,
csvread(filename, R1, C1) 读入从R1行,C1列以后的数据,csvread(filename)等价于csvread(filename, 0, 0)
csvread(filename, R1, C1,[R1, C1, R2, C2]) 读入R1行到R2行并且在在C1列到C2列间的数据。
2. matlab 之 multi-lines
如果一条语句过长,影响阅读,matlab支持将语句分行。
可以使用省略号 (...) 将语句延续到下一行,如:
s = 1 - 1/2 + 1/3 - 1/4 + 1/5 ...
- 1/6 + 1/7 - 1/8 + 1/9;
mytext = ['Accelerating the pace of ' ...
'engineering and science'];
注意每一行都有起始两个引号
详见MathWorks Continue Long Statements on Multiple Lines
3. cumsum累积和
cumsum( [1,3,2] ) 返回 [1, 4, 6]