A quick question regarding a plot between two points

Hey all.
So I'm trying to plot a line between two points, the first is [0.05,101] and the second is [0.1,320]. I've tried several ways to do it, and I always run into the problem of the first point on the plot being 0.05 instead of starting at 0 and then plotting the first point at 0.05. Is there a way to make it work in the way I'd like?

 采纳的回答

You can specify the axis limits with the axis function:
D = [0.05,101; 0.1,320];
figure(1)
plot(D(:,1), D(:,2))
axis([0 0.15 0 350])

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 2-D and 3-D Plots 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by