How to separate two signal?

2 次查看(过去 30 天)
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
figure()
plot(val(1,:))
figure()
plot(val(2,:))
  5 个评论
Stalin Samuel
Stalin Samuel 2016-1-6
load 16786m
figure()
plot(val(1,:))
figure()
plot(val(2,:))

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by