约 82 个结果
在新选项卡中打开链接
  1. Secant method - File Exchange - MATLAB Central - MathWorks

    2022年1月15日 · Matlab code for the secant method. The details of the method and also codes are available in the video lecture given in the description.

  2. Secant Method (secant_method) - File Exchange - MATLAB Central …

    2022年10月17日 · Secant method for finding the root of a univariate, scalar-valued function.

  3. The Secant Method - File Exchange - MATLAB Central - MathWorks

    2018年10月2日 · This Script Demonstrates the use of "The Secant Method " in solving the various Mathematical Equations.

  4. Modified Secant method - File Exchange - MATLAB Central

    2020年6月30日 · It is an open numerical method and a modified or improved version of the regular Secant method. It asks for only one initial guesses and a (fractional) constant. It …

  5. Secant Method - File Exchange - MATLAB Central - MathWorks

    2018年3月25日 · Download and share free MATLAB code, including functions, models, apps, support packages and toolboxes

  6. Simple code for Secant Method - MATLAB Answers - MATLAB …

    2012年2月26日 · I was asked to write a simple code for the Secant Method and display results in a table showing Pn, Pn - P* and a few other things. I am trying to get it to solve y = x^2-2.

  7. How to use secant method to solve two equations - MATLAB …

    2018年12月2日 · The secant method does not have a simple extension into multiple dimensions, although I am sure one could cobble something up. Far better however is to simply use tools …

  8. Newton and Secant Methods: Problems and Solutions

    2022年3月20日 · Newton's method is a powerful approach to solving nonlinear equations but it fails (also its approximate, the secant) when the derivative of the function equals zero, …

  9. Bisection Method (bisection_method) - File Exchange - MATLAB …

    2022年10月17日 · Bisection method for finding the root of a univariate, scalar-valued function.

  10. Solving a Nonlinear Equation using Newton-Raphson Method

    2013年11月25日 · suppose I need to solve f (x)=a*x.^3+b*x.^2+c using Newton-Raphson method where a,b,c are to be import from excel file or user defined, the what i need to do?