How to cut the signal

12 visualizzazioni (ultimi 30 giorni)
djoerig Hartono
djoerig Hartono il 30 Nov 2017
Spostato: Image Analyst il 7 Lug 2025
Dear All, I have waveform data in csv file in 'X' and 'Y' axis, the plot is on the figure attached. I want to remove the unneeded signal marked by arrows sign in order to get complete waveform signal. Is there any advice/better algorithm to remove the signal automatically ? My idea is to track the data in a loop then find the '0' value in the 'Y' axis and delete the rows before. Best regards.
  1 Commento
Supratim
Supratim il 29 Giu 2025

You can go to the Panner under display tab in signal analyzer app, and then you can crop out your signal

Accedi per commentare.

Risposta accettata

Image Analyst
Image Analyst il 30 Nov 2017
Modificato: Image Analyst il 29 Giu 2025
How about if you simply find the first and last time that y is negative?
index1 = find(y < 0, 1, 'first'); % Find left index
index2 = find(y < 0, 1, 'last'); % Find right index.
% Now crop signal
yCropped = y(index1:index2);
  3 Commenti
Lokesh Chowdary Patibandla
What is the 1 value in the index 1 & 2.
Image Analyst
Image Analyst il 28 Mag 2018
Modificato: Image Analyst il 29 Giu 2025
I don't know what that means. Please reword the question.
1 is just a number I put in the variable name index1 to distinguish it from a different variable called index2. You could use other names if you want.
The 1 that is the second argument to the find function means to return 1 value where y is negative, not multiple indexes where it's negative.

Accedi per commentare.

Più risposte (5)

Supratim
Supratim il 29 Giu 2025
Spostato: Image Analyst il 30 Giu 2025

You can go to the Panner under display tab in signal analyzer app, and then you can crop out your signal


Supratim
Supratim il 29 Giu 2025
Spostato: Image Analyst il 30 Giu 2025

You can go to the Panner under display tab in signal analyzer app, and then you can crop out your signal


Supratim
Supratim il 29 Giu 2025
Spostato: Image Analyst il 7 Lug 2025

You can go to the Panner under display tab in signal analyzer app, and then you can crop out your signal


Supratim
Supratim il 29 Giu 2025
Spostato: Image Analyst il 1 Lug 2025

You can go to the Panner under display tab in signal analyzer app, and then you can crop out your signal


Supratim
Supratim il 29 Giu 2025
Spostato: Image Analyst il 2 Lug 2025

You can go to the Panner under display tab in signal analyzer app, and then you can crop out your signal

Categorie

Scopri di più su Time-Frequency Analysis 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!

Translated by