calculated f(x) with a specific point x

18 ビュー (過去 30 日間)
valerio
valerio 2013 年 10 月 28 日
編集済み: Andrei Bobrov 2013 年 10 月 28 日
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) ?

回答 (1 件)

Andrei Bobrov
Andrei Bobrov 2013 年 10 月 28 日
編集済み: Andrei Bobrov 2013 年 10 月 28 日
f=@(x)exp(x.*(2-x.^2))-2./(3+5*x);
x = 3/2;
out = f(x);
Please read about anonymous functions

Community Treasure Hunt

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

Start Hunting!

Translated by