What is the use of plot(x, y, ':') while plotting the graph?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
S Priya
el 21 de Ag. de 2021
Respondida: Walter Roberson
el 21 de Ag. de 2021
x=0:pi/100:2*pi;
y=cos(x);
y2=sinx
plo(x,y2, ':')
why is ':' required?
3 comentarios
Rik
el 21 de Ag. de 2021
Did you perhaps mean plot(x,y2,':')?
If so, read the documentation for the plot function. It will clearly explain what that does.
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Annotations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!