hi, I have a time series data,I want to find first standard deviation array and second standard deviation array,using a standard deviation window,but I am getting errors.
3 ビュー (過去 30 日間)
古いコメントを表示
Please help me
5 件のコメント
採用された回答
Jyothis Gireesh
2019 年 8 月 23 日
I am assuming that you want to calculate the moving standard deviation of a time series data.
Here are a few suggestions about this problem which may be able to help you.
- The “std()” function in MATLAB calculates the standard deviation by taking the window length to be length of the time series data.
- If you are interested in calculating the moving standard deviation you may use the “movstd()” which allows the window length to be specified as an extra argument. Note that you may also have to specify the ‘SamplePoints’ property as well when you are using a time series object as input to “movstd()”
You may also look at the following MATLAB Answers link which provides a possible workaround on how to calculate moving standard deviation for a time series.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!