how to make the graph start at axis-y = 0 ?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/861980/image.jpeg)
How to fix the graph, so that the black dot, start at 0 ?
0 Commenti
Risposte (2)
Max Heimann
il 13 Gen 2022
Assuming the data you are plotting are vectors called
x_data, y_data
You could offset your data to achieve your goal.
x_data = x_data - x_data(1);
y_data = y_data - y_data(1);
Now your graph will start at 0,0
0 Commenti
yanqi liu
il 14 Gen 2022
yes,sir,may be set options 'ValidationFrequency' to make different valid step
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!