Write a MATLAB function called rootₙr that finds the root of a function using the Newton-Raphson method.
a) rootₙr(function, initial_guess)
b) rootₙr(function, initial_guess, tolerance)
c) rootₙr(function, initial_guess, max_iterations)
d) rootₙr(function, initial_guess, tolerance, max_iterations)