Azzera filtri
Azzera filtri

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

8 visualizzazioni (ultimi 30 giorni)
Where would I need to put periods in this function?

Risposte (1)

James Tursa
James Tursa il 29 Set 2020
Modificato: James Tursa il 29 Set 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.

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by