Why is this showing this undefined error for "^" input argument?

8 views (last 30 days)
function output=bisection(a,b,fun,tol)
a=15
b=36
fun=@y^2-5*y+6
tol=.00002
end
Undefined operator '^' for input arguments of type 'function_handle'.
Error in bisection (line 9)
fun=@y^2-5*y+6
  1 Comment
Walter Roberson
Walter Roberson on 23 Jan 2020
Why are you assigning a value to fun which was passed in as a parameter? Why are you assigning values to the other variables, all of which are expected to be passed in?

Sign in to comment.

Answers (1)

Sindar
Sindar on 23 Jan 2020
Edited: Sindar on 23 Jan 2020
fun=@(y) y.^2-5*y+6
is the syntax you want

Categories

Find more on Desktop in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!