필터 지우기
필터 지우기

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 CenterFile Exchange에서 ECG / EKG에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by