Removing first half signal
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Darshan Manjunathrao Chawan
le 13 Août 2020
Commenté : Star Strider
le 13 Août 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.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/345756/image.jpeg)
0 commentaires
Réponse acceptée
Star Strider
le 13 Août 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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Fourier Analysis and Filtering dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!