Removing first half signal
    4 ビュー (過去 30 日間)
  
       古いコメントを表示
    
    Darshan Manjunathrao Chawan
 2020 年 8 月 13 日
  
    
    
    
    
    コメント済み: Star Strider
      
      
 2020 年 8 月 13 日
            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!

