Day price1 price2
2/2/2000 10 15
3/2/2000 12 18
4/2/2000 14 19
对于每个值(价格 1 和价格 2),我想为每一列计算不同的 = 现在 - 过去(line2-line1)。
为了做到这一点,使用表格是正确的,有什么例子吗?
我有的
file = xlsread('example.xls');
y = length(price);
for i=1:y;
difprice1 = line(i+1)-line(i)
difprice2 = line(i+1)-line(i)
end