rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
Functions
newton_raphson.m File Reference

Global projected Levenberg-Marquard method. More...

Go to the source code of this file.

Functions

function [ xnew
,
resnorm ,
residual ,
exitflag , output ] = 
newton_raphson (funptr, x0, params)
 Global projected Levenberg-Marquard method. More...
 
function
jac_comp = 
newtonraphson>computed_jacobian (jac_test, X, fun)
 
function [ OK
, ok_mat ] = 
newtonraphson>check_jacobian (Utest, fun, jac_test, epsilon)
 

Detailed Description

Global projected Levenberg-Marquard method.

Definition in file newton_raphson.m.

Function Documentation

function [ xnew , resnorm , residual , exitflag , output ] = newton_raphson (   funptr,
  x0,
  params 
)

Global projected Levenberg-Marquard method.

Parameters
funptrfunptr
x0x0
paramsparams
Return values
xnewxnew
resnormresnorm
residualresidual
exitflagexitflag
outputoutput
Required fields of params:
  • TolRes —  TolRes
  • TolChange —  TolChange
  • Px —  Px
  • debug —  flag indicating wether debug output shall be turned on
  • gamma —  gamma
  • beta —  beta
  • TolLineSearch —  TolLineSearch
  • sigma —  sigma
  • maxIter —  maxIter
  • TolFuncCount —  TolFuncCount
Generated fields of output:
  • iterations —  iterations
  • funcCount —  funcCount
  • stepsize —  stepsize
  • firstorderopt —  firstorderopt
  • resmax —  resmax

Definition at line 17 of file newton_raphson.m.