Help debugging my program for plotting ezplot of sin and cos

 Accepted Answer

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 Comments

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 :)

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!