How to remove the part of a signal less than xaxis =0 along with the peak
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Ashwini Amin
il 21 Giu 2019
Commentato: Ashwini Amin
il 22 Giu 2019
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 Commenti
Risposta accettata
Vishnu Vardhan
il 21 Giu 2019
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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Multirate Signal Processing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!