Moving Avg calculation
显示 更早的评论
How does matlab calculate the initial points of a moving average? for example if my timeseries matrix TS is 10x1 and i want 2 and 5 period EMAS then movavg(TS, 2, 5, 'e') will return two 10x1 matrices even though the inital points in theory dont have enough samples to calculate the ema yet.
回答(2 个)
Teja Muppirala
2011-6-24
One nice thing about MATLAB is that you can edit a lot of the functions to see what's inside.
edit movavg
The code is well documented so you should be able to see what's going on.
类别
在 帮助中心 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!