Real Time Plot Not Smooth Enough
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Bolin
am 19 Okt. 2014
Beantwortet: Star Strider
am 19 Okt. 2014
Hi Guys
I have written a real time plotter that plots 128 samples I receive from an EEG headset, one sample at the time and attached is the result.
Obviously, since I'm plotting one point at a time, it is not going to be continuous enough.

Is there anyway to do real time interpolation to some how connect these dots?
If not, how do people produce real time plots that are continuous (smooth or jagged doesn't matter)?
2 Kommentare
Akzeptierte Antwort
Star Strider
am 19 Okt. 2014
To produce a line that appears continuous, change your plots to:
plot(i+Seconds*128,Channel_1,'-r','LineWidth',1.8)
plot(i+Seconds*128,Channel_2,'-g','LineWidth',1.8)
The '--' linetype will plot a dashed line, the '-' linetype will plot a continuous one.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Labels and Annotations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!