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!