Code to calculate raw moments?
5 views (last 30 days)
Show older comments
I know that 'moment(x)' gives central moment of vector x
But is there a direct code to compute raw moment?
0 Comments
Answers (1)
dpb
on 6 Jun 2021
Don't really need a function for that although could wrap in one if desired -- It would just be
M=x.^N;
NB: N in such an expression can be a vector such as [1:4] to return first four.
0 Comments
See Also
Categories
Find more on Get Started with Statistics and Machine Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!