How would I write the function of f(x)=sin(x)*exp(-x/10)
Show older comments
Where would I need to put periods in this function?
Answers (1)
James Tursa
on 29 Sep 2020
Edited: James Tursa
on 29 Sep 2020
The multiply. E.g.,
f = @(x) sin(x) .* exp(-x/10);
You don't need it on the divide because you are dividing by a scalar.
Categories
Find more on Debugging and Improving Code 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!