Effacer les filtres
Effacer les filtres

calculated f(x) with a specific point x

2 vues (au cours des 30 derniers jours)
valerio
valerio le 28 Oct 2013
Modifié(e) : Andrei Bobrov le 28 Oct 2013
Hallo can anyone help me? If I've a specific point x ,how to calculated f(x) with matlab ? for example : f='exp(x).^(2-x.^(2))-(2/(3+5*x))'; x= 3/2; how calculated f(x) ?

Réponses (1)

Andrei Bobrov
Andrei Bobrov le 28 Oct 2013
Modifié(e) : Andrei Bobrov le 28 Oct 2013
f=@(x)exp(x.*(2-x.^2))-2./(3+5*x);
x = 3/2;
out = f(x);
Please read about anonymous functions

Catégories

En savoir plus sur Time Series dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by