How to draw lines in matlab

3 views (last 30 days)
Aditya Shau
Aditya Shau on 27 Jul 2018
Commented: Wilmar Lima on 11 Nov 2019
Suppose x axis values are (30,40,50) and its corresponding y-axis values are (100,200,300). How to draw three different line in a plot with (30,100) one line,(40,200) one line and (50,300) one line. Thank you.

Answers (1)

KSSV
KSSV on 27 Jul 2018
Edited: KSSV on 27 Jul 2018
X = [30,40,50] ;
Y = [100,200,300] ;
plot(X,Y,'.-r')
REad about plot
  6 Comments
Aditya Shau
Aditya Shau on 27 Jul 2018
let me make my question clear..in x-axis I have some values and y-axis some values. I want to draw a continuous line from a point of the x-axis to y-axis. so,suppose we have to draw the contiious line from x-axis value (let 30) to yaxis value (let 100).. like in the attachment.i need to only connect the points through continious line.
Wilmar Lima
Wilmar Lima on 11 Nov 2019
X = [30,0];
Y = [0,100];
plot(X,Y,'.-r') A red line

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!