fzero function not working for equation, says undefined for double

조회 수: 15 (최근 30일)
Editor:
function f=HW6Q2(x)
f=3*cos(x^(1/5))-x^3;
Command Window:
>> x=fzero(@HW6Q2,1)
Error using fzero>localFirstFcnEval (line 729)
FZERO cannot continue because user-supplied function_handle ==> HW6Q2 failed with the error below.
Undefined function 'HW6Q2' for input arguments of type 'double'.
Error in fzero (line 286)
fx = localFirstFcnEval(FunFcn,FunFcnIn,x,varargin{:});
I have no idea why this is wrong. How do I get my function to handle a 'double'?

채택된 답변

Walter Roberson
Walter Roberson 2022년 3월 4일
x=fzero(@HW6Q2,1)
x = 1.1563
function f=HW6Q2(x)
f=3*cos(x^(1/5))-x^3;
end
You must not have saved the code under the file name HW6Q2 somewhere on your MATLAB path.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Problem-Based Optimization Setup에 대해 자세히 알아보기

태그

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by