A quick question regarding a plot between two points

3 views (last 30 days)
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?

Accepted Answer

Star Strider
Star Strider on 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])

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!