Find minimum of single-variable function
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi, what expression is calculated by the following command in Matlab?
Code:
fminbnd(@(x) (sin(x).^2-1),0,pi)
Minimum of:
(a) f(x)=1-sin x^2 or (b)1-sin^2x.
I answered a) in my exercise, however I am not sure if this is correct. Can someone tell me if this is correct?
댓글 수: 2
Adam Danz
2021년 1월 25일
Sounds like homework.
The documentation should be helpful to understand what that function is doing,
답변 (1개)
Adam Danz
2021년 1월 25일
Hint:
[x,fval] = fminbnd(___)
gives you the (x,y) values at the minimum.
You could plug the x values into both of your options and the one that returns the matching y value is the correct function.
댓글 수: 2
Adam Danz
2021년 1월 26일
Could you share the 2 lines of code where you tested the two versions? There's probably an error in how you're setting the equations.
참고 항목
카테고리
Help Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!