Community Profile

photo

Emre


Active since 2011

Followers: 0   Following: 0

Message

Statistics

  • First Review
  • Thankful Level 3

View badges

Feeds

View by

Question


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...

12 years ago | 3 answers | 0

3

answers

Answered
fminbnd finding wrong minimum point, please help
how can i make matlab find the correct minimum of the function?

12 years ago | 0

Question


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 ...

12 years ago | 2 answers | 0

2

answers

Question


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 ?...

12 years ago | 1 answer | 0

1

answer

Question


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 ...

12 years ago | 3 answers | 0

3

answers

Question


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.

12 years ago | 1 answer | 0

1

answer

Question


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...

12 years ago | 1 answer | 0

1

answer