PLOT Specific x,y data

22 views (last 30 days)
sanbadgerdude
sanbadgerdude on 31 Mar 2016
Commented: KSSV on 1 Apr 2016
I have 3 values...
At x=51,y=.0189
At x=201,y=.112
At x=40001,y=.202
All I want to do is plot these values and show the curve. On the x-axis labels for 51,201,40001 and on the y-axis labels for .0189, .112, .202.

Accepted Answer

KSSV
KSSV on 31 Mar 2016
x = [51 ; 201 ; 40001] ;
y = [.0189 ; .112 ; .202] ;
plot(x,y)
  2 Comments
sanbadgerdude
sanbadgerdude on 31 Mar 2016
Thank you! The semicolon is what had me confused. Did not think of that.
KSSV
KSSV on 1 Apr 2016
semicolon is not compulsory. You may skip the semicolon too...

Sign in to comment.

More Answers (0)

Categories

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

Tags

Community Treasure Hunt

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

Start Hunting!