Smoothing the Data with For Loop (Sliding Window)

6 ビュー (過去 30 日間)
tinkyminky93
tinkyminky93 2023 年 2 月 3 日
回答済み: Mathieu NOE 2023 年 2 月 10 日
Hello,
I am taking the datas from my sensor and the datas are the multiples of 5.8594 so my whole data looks like a mix of square wave and ramp function. What I want is, smooth the corners of this data with for loop. I want to see exponential-like or sinusoidal-like signal while iterating. I can do it with whole data but can not do it with for loop.
Thank you for your suggestions.
  2 件のコメント
dpb
dpb 2023 年 2 月 4 日
You don't explain the problem fully nor provide the code illustrate what is what you tried that doesn't work...
Guessing from what wasn't said, if the need is to smooth the data during the collection process as it arrives, then investigate the use of exponential weighting of the input signals as arrive instead of trying to post-process.
Kalman filtering is another technique may be of use here...
Jan
Jan 2023 年 2 月 5 日
"I can do it with whole data but can not do it with for loop." - Why not? what exactly is the problem and what is the purpose to use a loop at all? What do you want to loop over?

サインインしてコメントする。

回答 (1 件)

Mathieu NOE
Mathieu NOE 2023 年 2 月 10 日
hello
seems to me smoothdata can do what you need
plot(temperature)
hold on
ts = smoothdata(temperature,'gaussian',30);
plot(ts)

カテゴリ

Help Center および File ExchangeSmoothing and Denoising についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by