Problem:
Question: Create a function in Matlab called falseposition that implements the false position method to solve for the zero of a function in an interval a to b.
Your function should be used in the Matlab Command Window in the following manner:
=falseposition(@func,a,b) where func is a user-defined function (whose zero you are solving for) and a and b are initial lower and upper bounds.
Show the pedigree and your calculation.