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.

 채택된 답변

Star Strider
Star Strider 2020년 8월 13일

1 개 추천

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

Darshan Manjunathrao Chawan
Darshan Manjunathrao Chawan 2020년 8월 13일
Thanks!!
Star Strider
Star Strider 2020년 8월 13일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Community Treasure Hunt

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

Start Hunting!

Translated by