Change x axis increments

478 次查看(过去 30 天)
Dobs
Dobs 2021-11-22
回答: Star Strider 2021-11-22
Hi,
I am trying to write the code for the plot in the attached image. This is what I have so far:
a = [0,10,20,30,50,80,130,210,340,550];
b = linspace (0, 50, 10);
figure;
plot(a, 50-b);
xlim([0 550]);
yticks([0 10 20 30 40 50]);
The graph needs to be a straight line. How can I achieve that? My second question is how do I set the x axis to look like the one in the attached image? Is there a way to "customize" it? I've tried the following:
a = [0,10,20,30,50,80,130,210,340,550];
b = linspace (0, 50, 10);
figure;
plot(a, 50-b);
xlim([0 550]);
xticks(a);
yticks([0 10 20 30 40 50]);
But that obviously hasn't worked. Is there a way to get the number to be evenly spaced? I also don't understand how I can get matlab to add two 10s to the x axis.
If anyone has any suggestion, I'd gretaly appreciate it!
Many thanks,
Dobs

回答(1 个)

Star Strider
Star Strider 2021-11-22
See Axes Properties, specifically XScale, YScale, ZScale.
.

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by