Removing first half signal

1 view (last 30 days)
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.

Accepted Answer

Star Strider
Star Strider on 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);
.

More Answers (0)

Categories

Find more on Fourier Analysis and Filtering in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!