Error in fzero function

8 views (last 30 days)
Sam Oznc
Sam Oznc on 9 Apr 2018
Commented: Sam Oznc on 9 Apr 2018
why i got this error and how can i fix this?
Thank you..
a=log(0.5)*log10(30)*sin(pi/6); b=0.5*(atan(0.5))*3^(1/5);
fzero('x^3+2*a-b',-1)
FZERO cannot continue because user-supplied expression ==> x^3+2*a-b failed with the error below.
Error in inline expression ==> x^3+2*a-b Undefined function or variable 'a'.

Accepted Answer

James Tursa
James Tursa on 9 Apr 2018
Use a function handle. E.g.,
fzero(@(x)x^3+2*a-b,-1)

More Answers (0)

Categories

Find more on Problem-Based Optimization Setup in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!