rootSolve(func, xLow, xUpp, tol)

버전 1.21.0.0 (2.41 KB) 작성자: Matthew Kelly
This function uses Ridder's Method to do non-linear root finding
다운로드 수: 253
업데이트 날짜: 2017/4/24

라이선스 보기

This function uses Ridder's Method to do non-linear root finding. This method works well for smooth scalar functions, and requires a bounded search space.
% XZERO = ROOTSOLVE(FUNC, XLOW, XUPP, TOL)
%
% FUNCTION: This function uses Ridder's Method to return a root, xZero,
% of func on the interval [xLow,xUpp]
%
% INPUTS:
% func = a function for a SISO function: y = f(x)
% xLow = the lower search bound
% xUpp = the upper search bound
% tol = return xZero if abs(func(xZero)) < tol
%
% OUTPUTS:
% xZero = the root of the function on the domain [xLow, xUpp]
%
% NOTES:
% 1) The function must be smooth
% 2) sign(f(xLow)) ~= sign(f(xUpp))
% 3) This function will return a root if one exists, and the function is
% not crazy. If there are multiple roots, it will return the first one
% that it finds.

인용 양식

Matthew Kelly (2024). rootSolve(func, xLow, xUpp, tol) (https://www.mathworks.com/matlabcentral/fileexchange/54458-rootsolve-func-xlow-xupp-tol), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2012a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Physics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.21.0.0

updated documentation

1.2.0.0

Added feature: the user can now specify the convergence tolerance.

Fixed a small bug: the tolerance for checking roots on the boundary of the interval was set to 0, rather than the convergence tolerance.

1.1.0.0

Added photo.

1.0.0.0