Filter löschen
Filter löschen

Removing first half signal

3 Ansichten (letzte 30 Tage)
Darshan Manjunathrao Chawan
Darshan Manjunathrao Chawan am 13 Aug. 2020
Kommentiert: Star Strider am 13 Aug. 2020
Hi,
In the below signal i need to remove first half to get channel impulse response, how to do it?. You can help me with sine signal of your own plot.

Akzeptierte Antwort

Star Strider
Star Strider am 13 Aug. 2020
If ‘signal’ is the signal vector and ‘t’ is the time vector:
new_t = t(ceil(numel(signal)/2):end);
new_signal = signal(ceil(numel(signal)/2):end);
.
  2 Kommentare
Darshan Manjunathrao Chawan
Darshan Manjunathrao Chawan am 13 Aug. 2020
Thanks!!
Star Strider
Star Strider am 13 Aug. 2020
As always, my pleasure!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by