Improved Newton Method in MATLAB

Поділитися
Вставка
  • Опубліковано 5 вер 2024

КОМЕНТАРІ • 10

  • @AJ-et3vf
    @AJ-et3vf 2 роки тому +2

    Awesome video! Thank you!

  • @user-uo6gv2qw2j
    @user-uo6gv2qw2j 2 роки тому +3

    function x=newton_raphson(f,fd,xo,tol)
    x=xo;
    y=f(x);
    while abs(y) > tol
    x = x - y/fd(x);
    y = f(x)
    end
    end

  • @badran47
    @badran47 3 роки тому +2

    Thank you. It really helps

  • @sibasishdhibar9173
    @sibasishdhibar9173 3 роки тому +1

    Hello maam this is great helfull...
    But maam I have one question..
    This is good for one variable but What I do for Two/three variable??
    Can you suggest about 2/3 variables function?

  • @DHMathematicaAcademy
    @DHMathematicaAcademy 11 місяців тому

    I want to know how to code on Matlab for Halley's method "stability and convergence."

  • @frankbrown7043
    @frankbrown7043 3 роки тому

    NAN is Not A Number!

  • @jibranadeel8404
    @jibranadeel8404 4 роки тому

    Is this the qausi newton method?

  • @Dhanrajje
    @Dhanrajje 2 роки тому

    please give code

    • @user-uo6gv2qw2j
      @user-uo6gv2qw2j 2 роки тому +1

      function x=newton_raphson(f,fd,xo,tol)
      x=xo;
      y=f(x);
      while abs(y) > tol
      x = x - y/fd(x);
      y = f(x)
      end
      end