Help debugging my program for plotting ezplot of sin and cos

 Respuesta aceptada

madhan ravi
madhan ravi el 6 de Dic. de 2018
Editada: madhan ravi el 6 de Dic. de 2018
x=0:1:pi;
a=@(x) sin(pi*x);
y=@(x) cos(4*pi*x);
ezplot(a,[0,2]); % you forgot to add [ ] brackets
hold on;
ezplot(y,[0,2]);
see the attached screenshot of the graph produced
Screen Shot 2018-12-06 at 12.46.47 PM.png

6 comentarios

thanks a lot!
Anytime :) , if it worked make sure to accept the anwer and vote for it.
my MATLAB v2013 is showing these errors. I tried to copy ans paste your code.
you have a file named as class.m please change it's name or delete it
sorry I'm a noob .....thank you so much :)
You're welcome :)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 6 de Dic. de 2018

Comentada:

el 6 de Dic. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by