can fzero be used to find the minimum ?

조회 수: 2 (최근 30일)
Naveen Ramesh
Naveen Ramesh 2013년 4월 29일
Can fzero command be used to find the minimum of a function or a curve ? as in if i want to plot a function over a period and also want to find the minimum, is fzero command the best option and if so, how do i use it to find the minimum ?

채택된 답변

Kye Taylor
Kye Taylor 2013년 4월 29일
편집: Kye Taylor 2013년 4월 29일
Do you have the optimization toolbox?
To start you can begin with the fminbnd function. For example, say your function is g(x) = -x^2*exp(-x) for 0<x<10. You can find the minimum of the function on the specified interval using the commands
% define a function handle
g = @(x) -x.^2.*exp(-x);
% find minimum on specified interval
[xMin,fVal] = fminbnd(g,0,10);
% visualize
t = linspace(0,10);
plot(t,g(t),xMin,fVal,'ro')

추가 답변 (1개)

Matt J
Matt J 2013년 4월 29일
Use FMINSEARCH or FMINBND instead.

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by