Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

why i get 2 signals in the same plot?

2 Ansichten (letzte 30 Tage)
Good mind
Good mind am 27 Nov. 2017
Geschlossen: Good mind am 27 Mai 2018
this is the code to plot a signal loaded from physionet(MIT-BIH Arrhythmia database) but i get 2 signals in the same plot.what is the problem?
load ('100m.mat');
Ecg=(val-1042)/200;
fs=360;
ts=(0:length(Ecg)-1)/fs;
plot(ts,Ecg);

Akzeptierte Antwort

Sammit Jain
Sammit Jain am 27 Nov. 2017
I think you may want to look at the file 100m.mat closely. It's likely that your variable Ecg (coming from val) has two entries instead of just one. How does one entry in 100m.mat look?
If the column 'val' has 2 columns, then use
Ecg = val(:,1)
(or 2 depending on what column is relevant)
Cheers.
  1 Kommentar
Good mind
Good mind am 29 Nov. 2017
Bearbeitet: Good mind am 29 Nov. 2017
thank you.
Source: record mitdb/100 val has 2 rows (signals) and 3600 columns (samples/signal)Duration:0:10 this is from 100m.info i want to plot the signal versus the time. how can i?

Weitere Antworten (0)

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by