how to make the graph start at axis-y = 0 ?

4 次查看(过去 30 天)
How to fix the graph, so that the black dot, start at 0 ?

回答(2 个)

Max Heimann
Max Heimann 2022-1-13
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

yanqi liu
yanqi liu 2022-1-14
yes,sir,may be set options 'ValidationFrequency' to make different valid step

类别

Help CenterFile Exchange 中查找有关 Networks 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by