Removing first half signal
조회 수: 4 (최근 30일)
이전 댓글 표시
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.

댓글 수: 0
채택된 답변
Star Strider
2020년 8월 13일
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Vibration Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!