calculated f(x) with a specific point x
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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) ?
0 commentaires
Réponses (1)
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);
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!