signal processing (segmentation in time domain)

1 回表示 (過去 30 日間)
eman mohammad
eman mohammad 2019 年 10 月 22 日
回答済み: Adam 2019 年 10 月 22 日
how i can segment ECG signal in real time domain (not numbers of samples) , like this :
sig=ecgsignal;
t=timevalues;
x=[t,sig];
sig1=x(.34:4);% from .34 second to second 4 .
sig2=x(6:8.5);

採用された回答

Adam
Adam 2019 年 10 月 22 日
sig1 = sig( t >= 0.34 && t <= 4 );
sig2 = sig( t >= 6 && t <= 8.5 );
If you also need the t vector then apply it similarly. Just pull out the logic from there into two variables and apply them to both sig and t.
Or, index into x in the same way to get both times and signal values.

その他の回答 (0 件)

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by