Real time plot from streaming data
Mostra commenti meno recenti
How can I plot a graph in real time with data being streamed from yahoo.finance?
Should I use an infinite while loop or a timer? I think neither the two are the most correct solutions since one will always be constrained by their latency and one just want to update the graph whenever the variable is updated.
Risposte (4)
Nathan Crosty
il 17 Set 2013
Try this code snippet I have in my inventory as an example.
t = 0 ;
x = 0 ;
startSpot = 0;
interv = 1000 ; % considering 1000 samples
step = 0.1 ; % lowering step has a number of cycles and then acquire more data
while ( t <interv )
b = sin(t)+5;
x = [ x, b ];
plot(x) ;
if ((t/step)-500 < 0)
startSpot = 0;
else
startSpot = (t/step)-500;
end
axis([ startSpot, (t/step+50), 0 , 10 ]);
grid
t = t + step;
drawnow;
pause(0.01)
end
1 Commento
Zibo Wang
il 1 Giu 2017
great! I like this, thank you so much
Rui
il 20 Set 2013
0 voti
Rui
il 20 Set 2013
0 voti
Tim DeWolf
il 6 Set 2016
0 voti
I'm collecting buffer/queue data from a driver in real time using a MATLAB timer in a GUI (guide) and it works. You can still use MATLAB.
Categorie
Scopri di più su Animation in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!