calculated f(x) with a specific point x
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
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);
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!