Info
此问题已关闭。 请重新打开它进行编辑或回答。
Another query is what am I doing wrong in this program to calculate moving average?
1 次查看(过去 30 天)
显示 更早的评论
load('proctrial_1.lvm);
output = tsmovavg('proctrial_1.lvm','s',1000,2)
plot(output);
plot(output)
x = output(:,1);
y = output(:,2);
plot(x,y);
Its returning the error, 'Error: File: Movavg1.m Line: 1 Column: 6 A MATLAB string constant is not terminated properly.
0 个评论
回答(2 个)
Guillaume
2015-2-12
I don't have the financial toolbox, but just looking at the doc, it doesn't look like tsmovavg accepts a file name as its first argument. Shouldn't it just be:
output = tsmovavg(proctrial_1, 's', 1000, 2)
Note that output is a very poor variable name. It says nothing about what's in the variable.
1 个评论
Shekhar Vats
2019-10-10
It should be
load('proctrial_1.lvm');
instead of
load('proctrial_1.lvm);
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!