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?

 Akzeptierte Antwort

Star Strider
Star Strider am 5 Feb. 2015
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])

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by