Root of nonlinear function - MATLAB fzero
www.mathworks.com › help › matlabx = fzero (fun,x0) tries to find a point x where fun (x) = 0. This solution is where fun (x) changes sign— fzero cannot find a root of a function such as x^2. x = fzero (fun,x0,options) uses options to modify the solution process. x = fzero (problem) solves a root-finding problem specified by problem. [x,fval,exitflag,output] = fzero ...
fzero (MATLAB Functions)
matlab.izmiran.ru › help › techdocThe fzero command finds a point where the function changes sign. If the function is continuous, this is also a point where the function has a value near zero. If the function is not continuous, fzero may return values that are discontinuous points instead of zeros. For example, fzero(@tan,1) returns 1.5708, a discontinuous point in tan.
fzero (MATLAB Functions)
matlab.izmiran.ru/help/techdoc/ref/fzero.htmlfzero (MATLAB Functions) MATLAB Function Reference fzero Find zero of a function of one variable Syntax x = fzero(fun,x0) x = fzero(fun,x0,options) [x,fval] = fzero(...) [x,fval,exitflag] = fzero(...) [x,fval,exitflag,output] = fzero(...) Description x = fzero(fun,x0) funis a function handle.