フィルターのクリア

How to remove the part of a signal less than xaxis =0 along with the peak

2 ビュー (過去 30 日間)
Ashwini Amin
Ashwini Amin 2019 年 6 月 21 日
コメント済み: Ashwini Amin 2019 年 6 月 22 日
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
MATLABquery.JPG

採用された回答

Vishnu Vardhan
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 件のコメント
Ashwini Amin
Ashwini Amin 2019 年 6 月 22 日
Hello Vishnu ,
I have tried
idx = find(xaxisdataC>=0.1);
plot(xaxisdataC(idx) ,yaxisdataC(idx))
While doing so it is returning idx =[] (null )in my workspace.
Else could you please suggest a way to remove the part of signal from 0 upto the peak(present around value of 1000) in below image
MATLABquery2.JPG
Ashwini Amin
Ashwini Amin 2019 年 6 月 22 日
Can i use any kind of filter or windowing techniques. If yes please help me with the code.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultirate Signal Processing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by