How to calculate peak to peak amplitude from a waveform
4 ビュー (過去 30 日間)
古いコメントを表示
Mei Astrid Ardiani
2017 年 7 月 14 日
コメント済み: Mei Astrid Ardiani
2017 年 7 月 14 日
I have a waveform in time and velocity and I want calculate the amplitude using peak to peak amplitude concept. How to do it?
0 件のコメント
採用された回答
Image Analyst
2017 年 7 月 14 日
Do you just want the min to max over the entire signal
amplitude = max(waveform(:)) - min(waveform(:));
or do you want the amplitude in a moving window? If in a moving window, what should the window width be?
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!