Plotting Graph that needs automated value for x-axis
Informazioni
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Mostra commenti meno recenti
Hello.
I am working in plotting a graph where the y-axis is the data from the file I choose. However, for the x-axis, is it possible for matlab to automatically give 0.01 interval from the first value till the last value in the file and the file has no fixed amount of data.
Really appreciate if anyone can give some advice. Thanks!
Regards,
Jeb
Risposte (1)
Geoff Hayes
il 29 Gen 2016
Jeb - how do you determine the first and last value in the file? If you know both, then you could do something like
firstValue = 1.0;
lastValue = 5.0;
x = firstValue:0.01:lastValue;
Since you are using the above to plot presumably as
plot(x,y)
then the number of elements (length) of x must be identical to the number of elements of y.
1 Commento
Jeb
il 29 Gen 2016
Questa domanda è chiusa.
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!