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 个)

It's fairly well explained in
doc movavg
I would recommend using conv anyway. example thread

1 个评论

now sure what you mean by well explained. Doc was first place i checked, and it doesnt seem to go into any detail as far as how its calculated unless im overlooking something?

请先登录,再进行评论。

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 的更多信息

标签

提问:

Jim
2011-6-23

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by