i have an PPG signal array of dimension of 1440000x1. my sampling rate is 48000 and i recorded the signal for 30 second. How do I eliminate the first 5 seconds of my signal? Please do help. Thanks in advance.
1 回表示 (過去 30 日間)
古いコメントを表示
my code is as follows: num=(1:1:size(x)); t=num/48000; plot(t,x);
0 件のコメント
回答 (1 件)
Sindhu Priya
2017 年 3 月 9 日
編集済み: Sindhu Priya
2017 年 3 月 9 日
I think changing the plot function like this may help you
y=48000*5;
plot(t(y:end),x(y:end));
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Measurements and Feature Extraction についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!