Feeds
提问
how to find minimum point at endpoint in matlab, please help.
clc,clear f = @(x)((15*x)./(4*x.^2-3*x+4)); x = fminbnd(f, 0, 10); x y=f(x); y this code returns x...
14 years 前 | 3 个回答 | 0
3
个回答已回答
fminbnd finding wrong minimum point, please help
how can i make matlab find the correct minimum of the function?
fminbnd finding wrong minimum point, please help
how can i make matlab find the correct minimum of the function?
14 years 前 | 0
提问
fminbnd finding wrong minimum point for no reason, please help
f = @(x)(-(1.0/((x-0.3).^2+0.01)+1.0/((x-0.9).^2+0.04))); x = fminbnd(f, -1, 2); x y=f(x); y x = -1:0.3:2 y ...
14 years 前 | 2 个回答 | 0
2
个回答提问
Getting "Matrix dimensions must agree." warning, please help.
x = -1:0.3:2 y = -(1/((x-0.3).^2+0.01)+1/((x-0.9).^2+0.04)) plot(x,y) when i run the program, i get this error ?...
14 years 前 | 1 个回答 | 0
1
个回答提问
fminbnd finding wrong minimum point, please help
clc,clear f = @(x)((15*x)./(4*x.^2-3*x+4)); x = fminbnd(f, 0, 10); x y=f(x); y i think it should find x=0 and ...
14 years 前 | 3 个回答 | 0
3
个回答提问
Can not plot, please help
x = 0:1:10 y = (15*x)/(4*x.^2-3*x+4) plot(x,y) why can't i plot this? please help me.
14 years 前 | 1 个回答 | 0
1
个回答提问
Problem with Newton Raphson Method for Two Variables
clc,clear % Newton Raphson solution of two nonlinear algebraic equations % set up the iteration error1 = 1.e8; xx(1) = 0; % in...
14 years 前 | 1 个回答 | 0

