フィルターのクリア

i have an ecg signal of length 304 ,but while plotting i only want to plot the signal till 300..can anybody help me about how to do it

1 回表示 (過去 30 日間)
Actually i am getting unexpected result at the end of the sample so that is why i wantto decrese the length

採用された回答

Jan
Jan 2013 年 2 月 27 日
ecg = rand(1, 304);
plot(ecg(1:300));

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2013 年 2 月 27 日
plot(t(1:300), signal(1:300)) ?

カテゴリ

Help Center および File ExchangeECG / EKG についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by