How to remove the part of a signal less than xaxis =0 along with the peak
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ashwini Amin
el 21 de Jun. de 2019
Comentada: Ashwini Amin
el 22 de Jun. de 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 comentarios
Respuesta aceptada
Vishnu Vardhan
el 21 de Jun. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Multirate Signal Processing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

