plotting a graph using matlab
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Vidhya Dharshini
il 5 Feb 2014
Commentato: Vidhya Dharshini
il 13 Feb 2014
I have the value of a time varying variable for every 5 seconds. How to plot a graph with it.
0 Commenti
Risposta accettata
Mischa Kim
il 5 Feb 2014
Modificato: Mischa Kim
il 5 Feb 2014
Try something like:
t = 0:5:100;
x = sin(t);
plot(t,x,'*')
xlabel('time in s')
ylabel('my y axis')
title('my title')
where x would represent your data. Make sure that the length of your time vector equals the length of your data vector.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!