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.

 Réponse acceptée

Star Strider
Star Strider le 13 Août 2020

1 vote

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 commentaires

Darshan Manjunathrao Chawan
Darshan Manjunathrao Chawan le 13 Août 2020
Thanks!!
Star Strider
Star Strider le 13 Août 2020
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

Community Treasure Hunt

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

Start Hunting!

Translated by