Removing first half signal
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Darshan Manjunathrao Chawan
 il 13 Ago 2020
  
    
    
    
    
    Commentato: Star Strider
      
      
 il 13 Ago 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.

0 Commenti
Risposta accettata
  Star Strider
      
      
 il 13 Ago 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 Commenti
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Vibration Analysis in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

