Borrar filtros
Borrar filtros

Expression or statement is incorrect--possibly unbalanced

2 visualizaciones (últimos 30 días)
Dick Rusell
Dick Rusell el 12 de Sept. de 2014
Comentada: Steven Lord el 12 de Jun. de 2017
I'm trying to use plot, but I keep getting this error and I'm not sure why.
n = [0:99];
omega = 1.26 * pi;
xn = sin(omega*n);
plot = (n,xn);
xlabel = ('Time Index, n');
ylabel = ('Amplitude');
axis = ([0 99 -1 1]);
??? plot = (n,xn);
|
Error: Expression or statement is incorrect--possibly unbalanced (, {, or [.
  1 comentario
Stephen23
Stephen23 el 12 de Jun. de 2017
Editada: Stephen23 el 12 de Jun. de 2017
plot = (n,xn);
xlabel = ('Time Index, n');
ylabel = ('Amplitude');
axis = ([0 99 -1 1]);
Wow... what dodgy youtube "tutorial" or random teenager's blog showed that incredibly bad syntax and variable naming? Is finding the MATLAB documentation so difficult?

Iniciar sesión para comentar.

Respuesta aceptada

Guillaume
Guillaume el 12 de Sept. de 2014
plot(n, xn);
  4 comentarios
Dave Jack
Dave Jack el 12 de Jun. de 2017
I have an same problem and I have no idea to solve it
Steven Lord
Steven Lord el 12 de Jun. de 2017
Show a small segment of code with which you can reproduce the error and the full text (everything in red) of the error message you receive when you execute that small segment of code.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots 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!

Translated by