Finds the root of an equation using a Numerical Technique called Secant Method.
c=sesolve(a,b,f,tol)
Initial Guess(1)
Initial Guess(2)
equation(function) whose root is to be estimated
Tolerance or acceptable error in the root.
root of the equation
Finds the root of an equation using the Numerical technique of Finding a root called Secant Method.
NOTE: This method does not find all the roots but only One root near the initial guesses.
To find different roots try using different initial guesses.
deff('a=f(x)','a=9*x^3-81'); sesolve(5,25,f,0.00000001) | ![]() | ![]() |