Borrar filtros
Borrar filtros

calculated f(x) with a specific point x

2 visualizaciones (últimos 30 días)
valerio
valerio el 28 de Oct. de 2013
Editada: Andrei Bobrov el 28 de Oct. de 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) ?

Respuestas (1)

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

Categorías

Más información sobre Time Series en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by