Two signals are plotted on same figure as shown below. One signal is plotted in green color and the other one is in blue.
I need to plot them separately.
The code I used to plot above signal is:
plotATM('16786m')
Source files are available to download here
These signals are of ECG and taken from PhysioNet Database .

 채택된 답변

Stalin Samuel
Stalin Samuel 2016년 1월 6일

0 개 추천

figure()
plot(val(1,:))
figure()
plot(val(2,:))

댓글 수: 5

Explorer
Explorer 2016년 1월 6일
I am getting error i.e. Undefined function or variable 'val'.
Explorer
Explorer 2016년 1월 6일
I am using older version of MATLAB. It's MATLAB R2013a
Explorer
Explorer 2016년 1월 6일
'val' function does not work in MATLAB rather it works in MuPAD and I don't know how to use MuPAD.
load 16786m
figure()
plot(val(1,:))
figure()
plot(val(2,:))
Explorer
Explorer 2016년 1월 6일
Thank you Stalin.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Naming Conventions에 대해 자세히 알아보기

질문:

2016년 1월 6일

댓글:

2016년 1월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by