Damped Cosine wave not working

조회 수: 1 (최근 30일)
Nicholas Gresham
Nicholas Gresham 2020년 3월 22일
답변: Sriram Tadavarty 2020년 3월 22일
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') "

채택된 답변

Sriram Tadavarty
Sriram Tadavarty 2020년 3월 22일
Hi Nicholas,
The usage of function handle is wrong here. If you want it to be a function handle, you need to pass input to y. But, this is not passed.
The next issue is exponential is not written properly.
Here are few suggestions to the code that make it work:
x = (0:0.01:4);
y = exp(-0.4.*x).*cos(5.*x); % Need not have function handle and then directly exp (), no need of ^
plot(x,y,'--c')
% If you want use it with function handle itself, here is the way it can be done
x = (0:0.01:4);
y = @(x) (exp((-0.4.*x))).*cos(5.*x); % Place exponential properly
plot(x,y(x),'--c') % Pass x here
Hope this helps.
Regards,
Sriram

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by