Local minimum and global minimum of a function
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Anjali
el 13 de Mayo de 2015
Comentada: Walter Roberson
el 13 de Mayo de 2015
Hi!
I need to obtain the first local minimum as well as the global minimum of this function for t>0.
CV_inf = @(T) T.*(4/(n+1)) - (1/2*pi)*integral(psitildasq,(-T),(T),'Arrayvalued',true);
where
psitildasq = @(t) (1/n^2)*sum((cos(x.*t))).^2 + (1/n^2)*sum((sin(x.*t))).^2;
n is the size of vector x.
Beacause fmnbnd and fminsearch may give local minimum of a function, are there other functions that I can use? If so is there an option I could specify to obtain the first local minimum?
Thanks.
1 comentario
Walter Roberson
el 13 de Mayo de 2015
Consider moving the n out of psitildasq to speed the integration up. It is acting as a constant multiplier of 1/n^2 on the integral.
Question: do you intend 1/2*pi to be pi/2 or to be 1/(2*pi) ?
Respuesta aceptada
Walter Roberson
el 13 de Mayo de 2015
patternsearch() from the Global Optimization Toolbox might be appropriate for the global minimum.
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!