Math_Numerical_RootFinding
[ class tree: Math_Numerical_RootFinding ] [ index: Math_Numerical_RootFinding ] [ all elements ]

Element index for package Math_Numerical_RootFinding

[ b ] [ c ] [ d ] [ e ] [ f ] [ g ] [ i ] [ m ] [ n ] [ o ] [ r ] [ s ] [ v ]

b

buildPackageXML.php
procedural page buildPackageXML.php
bisection.php
procedural page bisection.php
Bisection.php
procedural page Bisection.php
top

c

compute
in file NewtonRaphson2.php, method Math_Numerical_RootFinding_NewtonRaphson2::compute()
    Newton-Raphson method for calculate double root (twin root).
compute
in file RalstonRabinowitz.php, method Math_Numerical_RootFinding_RalstonRabinowitz::compute()
    Ralston and Rabinowitz method for calculate double root (twin root).
compute
in file Secant.php, method Math_Numerical_RootFinding_Secant::compute()
    Secant method.
compute
in file NewtonRaphson.php, method Math_Numerical_RootFinding_NewtonRaphson::compute()
    Netwon-Raphson method.
compute
in file FixedPoint.php, method Math_Numerical_RootFinding_FixedPoint::compute()
    Fixed Point method.
compute
in file Common.php, method Math_Numerical_RootFinding_Common::compute()
    Compute the root.
compute
in file FalsePosition.php, method Math_Numerical_RootFinding_FalsePosition::compute()
    False Position/Regula Falsi method.
compute
in file Bisection.php, method Math_Numerical_RootFinding_Bisection::compute()
    Bisection/Binary Chopping/Interval Halving/Bolzano method.
Common.php
procedural page Common.php
top

d

d1x
in file newton_raphson2.php, function d1x()
    f'(x) callback function.
d2x
in file newton_raphson2.php, function d2x()
    f''(x) callback function.
top

e

$epsError
in file Common.php, variable Math_Numerical_RootFinding_Common::$epsError
    Epsilon error.
top

f

factory
in file RootFinding.php, method Math_Numerical_RootFinding::factory()
    Create new instance of RootFinding method class.
false_position.php
procedural page false_position.php
fixed_point.php
procedural page fixed_point.php
FalsePosition.php
procedural page FalsePosition.php
FixedPoint.php
procedural page FixedPoint.php
top

g

$GLOBALS['_Math_Numerical_RootFinding_drivers']
in file RootFinding.php, global variable $GLOBALS['_Math_Numerical_RootFinding_drivers']
    Method driver aliases in order to create the prety file names, also for insensitive-case of method name calls.
gx
in file fixed_point.php, function gx()
    f(x) callback function.
get
in file Common.php, method Math_Numerical_RootFinding_Common::get()
    Get the option value.
getEpsError
in file Common.php, method Math_Numerical_RootFinding_Common::getEpsError()
    Get epsilon error.
getEqResult
in file Common.php, method Math_Numerical_RootFinding_Common::getEqResult()
    Compute a value using given equation function or object/method.
getIterationCount
in file Common.php, method Math_Numerical_RootFinding_Common::getIterationCount()
    Get iteration count.
getRoot
in file Common.php, method Math_Numerical_RootFinding_Common::getRoot()
    Get root value.
top

i

$iterationCount
in file Common.php, variable Math_Numerical_RootFinding_Common::$iterationCount
    Iteration count.
infoCompute
in file NewtonRaphson2.php, method Math_Numerical_RootFinding_NewtonRaphson2::infoCompute()
    Print out parameters description for compute() function.
infoCompute
in file RalstonRabinowitz.php, method Math_Numerical_RootFinding_RalstonRabinowitz::infoCompute()
    Print out parameters description for compute() function.
infoCompute
in file Secant.php, method Math_Numerical_RootFinding_Secant::infoCompute()
    Print out parameters description for compute() function.
infoCompute
in file NewtonRaphson.php, method Math_Numerical_RootFinding_NewtonRaphson::infoCompute()
    Print out parameters description for compute() function.
infoCompute
in file FixedPoint.php, method Math_Numerical_RootFinding_FixedPoint::infoCompute()
    Print out parameters description for compute() function.
infoCompute
in file Bisection.php, method Math_Numerical_RootFinding_Bisection::infoCompute()
    Print out parameters description for compute() function.
infoCompute
in file FalsePosition.php, method Math_Numerical_RootFinding_FalsePosition::infoCompute()
    Print out parameters description for compute() function.
isDivergentRows
in file Common.php, method Math_Numerical_RootFinding_Common::isDivergentRows()
    Detect for divergent rows.
top

m

Math_Numerical_RootFinding
in file RootFinding.php, class Math_Numerical_RootFinding
    Math_Numerical_RootFinding base class.
Math_Numerical_RootFinding_Bisection
in file Bisection.php, class Math_Numerical_RootFinding_Bisection
    Bisection/Binary Chopping/Interval Halving/Bolzano method class.
Math_Numerical_RootFinding_Bisection
in file Bisection.php, method Math_Numerical_RootFinding_Bisection::Math_Numerical_RootFinding_Bisection()
    Constructor.
Math_Numerical_RootFinding_Common
in file Common.php, method Math_Numerical_RootFinding_Common::Math_Numerical_RootFinding_Common()
    Constructor.
Math_Numerical_RootFinding_Common
in file Common.php, class Math_Numerical_RootFinding_Common
    Abstract class contains common properties and methods for specified method classes.
Math_Numerical_RootFinding_FalsePosition
in file FalsePosition.php, method Math_Numerical_RootFinding_FalsePosition::Math_Numerical_RootFinding_FalsePosition()
    Constructor.
Math_Numerical_RootFinding_FalsePosition
in file FalsePosition.php, class Math_Numerical_RootFinding_FalsePosition
    False Position/Regula Falsi method class.
Math_Numerical_RootFinding_FixedPoint
in file FixedPoint.php, method Math_Numerical_RootFinding_FixedPoint::Math_Numerical_RootFinding_FixedPoint()
    Constructor.
Math_Numerical_RootFinding_FixedPoint
in file FixedPoint.php, class Math_Numerical_RootFinding_FixedPoint
    Fixed Point method class.
Math_Numerical_RootFinding_NewtonRaphson
in file NewtonRaphson.php, method Math_Numerical_RootFinding_NewtonRaphson::Math_Numerical_RootFinding_NewtonRaphson()
    Constructor.
Math_Numerical_RootFinding_NewtonRaphson
in file NewtonRaphson.php, class Math_Numerical_RootFinding_NewtonRaphson
    Newton-Raphson method class.
Math_Numerical_RootFinding_NewtonRaphson2
in file NewtonRaphson2.php, method Math_Numerical_RootFinding_NewtonRaphson2::Math_Numerical_RootFinding_NewtonRaphson2()
    Constructor.
Math_Numerical_RootFinding_NewtonRaphson2
in file NewtonRaphson2.php, class Math_Numerical_RootFinding_NewtonRaphson2
    Newton-Raphson 2 method class.
Math_Numerical_RootFinding_RalstonRabinowitz
in file RalstonRabinowitz.php, method Math_Numerical_RootFinding_RalstonRabinowitz::Math_Numerical_RootFinding_RalstonRabinowitz()
    Constructor.
Math_Numerical_RootFinding_RalstonRabinowitz
in file RalstonRabinowitz.php, class Math_Numerical_RootFinding_RalstonRabinowitz
    Ralston and Rabinowitz method class.
Math_Numerical_RootFinding_Secant
in file Secant.php, method Math_Numerical_RootFinding_Secant::Math_Numerical_RootFinding_Secant()
    Constructor.
Math_Numerical_RootFinding_Secant
in file Secant.php, class Math_Numerical_RootFinding_Secant
    Secant method class.
top

n

newton_raphson.php
procedural page newton_raphson.php
newton_raphson2.php
procedural page newton_raphson2.php
NewtonRaphson.php
procedural page NewtonRaphson.php
NewtonRaphson2.php
procedural page NewtonRaphson2.php
top

o

$options
in file Common.php, variable Math_Numerical_RootFinding_Common::$options
    Options.
top

r

RootFinding.php
procedural page RootFinding.php
ralston_rabinowitz.php
procedural page ralston_rabinowitz.php
$root
in file Common.php, variable Math_Numerical_RootFinding_Common::$root
    Root value.
RalstonRabinowitz.php
procedural page RalstonRabinowitz.php
reset
in file Common.php, method Math_Numerical_RootFinding_Common::reset()
    Reset all values.
top

s

secant.php
procedural page secant.php
Secant.php
procedural page Secant.php
set
in file Common.php, method Math_Numerical_RootFinding_Common::set()
    Set the option(s).
top

v

validateEqFunction
in file Common.php, method Math_Numerical_RootFinding_Common::validateEqFunction()
    Validate equation function or object/method.
top

Documentation generated on Mon, 11 Mar 2019 15:40:47 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.