Azzera filtri
Azzera filtri

How to separate two signal?

2 visualizzazioni (ultimi 30 giorni)
Explorer
Explorer il 6 Gen 2016
Commentato: Explorer il 6 Gen 2016
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 .

Risposta accettata

Stalin Samuel
Stalin Samuel il 6 Gen 2016
figure()
plot(val(1,:))
figure()
plot(val(2,:))
  5 Commenti
Stalin Samuel
Stalin Samuel il 6 Gen 2016
load 16786m
figure()
plot(val(1,:))
figure()
plot(val(2,:))
Explorer
Explorer il 6 Gen 2016
Thank you Stalin.

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by