How would I write the function of f(x)=sin(x)*exp(-x/10)

Answers (1)

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

Tags

Asked:

on 29 Sep 2020

Edited:

on 29 Sep 2020

Community Treasure Hunt

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

Start Hunting!