What is the use of plot(x, y, ':') while plotting the graph?

2 Ansichten (letzte 30 Tage)
S Priya
S Priya am 21 Aug. 2021
Beantwortet: Walter Roberson am 21 Aug. 2021
x=0:pi/100:2*pi;
y=cos(x);
y2=sinx
plo(x,y2, ':')
why is ':' required?
  3 Kommentare
S Priya
S Priya am 21 Aug. 2021
Bearbeitet: S Priya am 21 Aug. 2021
But plot(x,y2) also shows the results.
Rik
Rik am 21 Aug. 2021
Did you perhaps mean plot(x,y2,':')?
If so, read the documentation for the plot function. It will clearly explain what that does.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 21 Aug. 2021
':' is dotted line joining the points.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by