Damped Cosine wave not working
Show older comments
function dampedOsc3()
x = (0:0.01:4);
y = @(x)(exp.^(-0.4.*x))*cos(5.*x);
plot(x,y,'--c')
end
Why is this Code not working, matlab is saying that there is an error with the final line " plot(x,y,'--c') "
Accepted Answer
More Answers (0)
Categories
Find more on MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!