DSP
1 回表示 (過去 30 日間)
古いコメントを表示
hello everybody how can I find the time at which the maximum value of the signal happen, if I have signal of 2D ,one is the time and the other is the amplitude .
0 件のコメント
採用された回答
Walter Roberson
2012 年 2 月 8 日
[maxval, maxidx] = max(YourSignal(:,2)); %assuming 2nd col is ampl
time_at_max = YourSignal(maxidx,1); %assuming 1st col is time
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で DSP System Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!