when i plot my figure doesnt show line

1 visualización (últimos 30 días)
Palvasha Turial
Palvasha Turial el 27 de Feb. de 2021
Comentada: Star Strider el 27 de Feb. de 2021
x = 1:5
y = 6;9
plot(x,y)

Respuestas (1)

Star Strider
Star Strider el 27 de Feb. de 2021
Use a colon to create the vectors instead of a semicolon, and be sure the vectors are equal length:
x = 1:5;
y = 5:9;
plot(x,y)
alternatively, if you want to define ‘x’ and ‘y’ as 2-element vectors:
x = [1 5];
y = [6 9];
plot(x,y)
Both will work.
  6 comentarios
Palvasha Turial
Palvasha Turial el 27 de Feb. de 2021
thank you all
Star Strider
Star Strider el 27 de Feb. de 2021
Please use a version of the code I provided. Those will work.
The code you are attempting to run will not work and will likely throw errors.
Please see Getting Started or MATLAB Onramp (or preferably both of these) to understand how MATLAB works and how to write useful scripts.

Iniciar sesión para comentar.

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by