フィルターのクリア

How I can find the time between two points on a signal.

1 回表示 (過去 30 日間)
Khalid Mahmood
Khalid Mahmood 2013 年 12 月 30 日
編集済み: Wayne King 2013 年 12 月 30 日
I need to find the time between the first and last exceedence of absolute 0.05g on earthquake accelerogram. Please guide how I can do that?

採用された回答

Wayne King
Wayne King 2013 年 12 月 30 日
編集済み: Wayne King 2013 年 12 月 30 日
I'm just using a simulated signal, x, substitute you signal for x in the calls to find()
x = 0.05*randn(100,1);
idx1 = find(abs(x)>0.05,1,'first');
idx2 = find(abs(x)>0.05,1,'last');

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEarthquake Engineering についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by