How to remove the part of a signal less than xaxis =0 along with the peak
10 ビュー (過去 30 日間)
古いコメントを表示
Hello All,
Could you please help me with the MATLAB command to remove(trim) part of the signal highlighted in red colour in the image

0 件のコメント
採用された回答
Vishnu Vardhan
2019 年 6 月 21 日
Hi Ashwini
you can use find function available in MATLAB
idx = find(x>=0);
plot(x(idx) ,y(idx)) %where x and y are the axis
Hope that helps!
4 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Multirate Signal Processing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

