Plotting graph using arrays

12 Ansichten (letzte 30 Tage)
Shantanu Vachhani
Shantanu Vachhani am 25 Okt. 2017
x=zeros(1,10);
x(2:4) =1;
y= linspace(0,10,10);
plot(y,x)
I want a straight vertical line but matlab is giving me a slant line.Any solution?
  1 Kommentar
Jackson Brandeberry
Jackson Brandeberry am 23 Okt. 2020
How do you then find the equation of the graph?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

KSSV
KSSV am 25 Okt. 2017
x = [1 1 2 3 4 4 5 6 7 8 9 10] ;
y = [0 1 1 1 1 0 0 0 0 0 0 0] ;
plot(x,y)

Kategorien

Mehr zu Graph and Network Algorithms finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by