I have MatlabR2019b and I am trying to do a simple plot. I am not able to plot anything unless I use scatter(x,y) or area(x,y). How could I get plot(x,y) to work? I am using a Mac.

1 visualización (últimos 30 días)
I have MatlabR2019b and I am trying to do a simple plot. I am not able to plot anything unless I use scatter(x,y) or area(x,y). How could I get plot(x,y) to work? Is there some tool/addon missing? I am using a Macbook Pro with Mojave 10.14.6.
x = linspace(0,2*pi,50);
y = sin(x);
plot(x,y)
hold on
y2 = cos(x);
plot(x,y2)
hold off
Screen Shot 2019-12-14 at 11.15.32 AM.png
Screen Shot 2019-12-14 at 11.17.05 AM.png

Respuesta aceptada

Walter Roberson
Walter Roberson el 14 de Dic. de 2019
You need to rename plot.m in the untitled folder directory as it is overriding the Mathworks plot call

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by