!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

C:\dmz\php\pear\Math\Numerical\RootFinding\   drwxrwxrwx
Free 4.11 GB of 39.52 GB (10.39%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Secant.php (7.06 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4 foldmethod=marker: */

// {{{ Header

/**
 * Driver file contains Math_Numerical_RootFinding_Bisection class to provide
 * Secant method root finding calculation.
 *
 * PHP versions 4 and 5
 *
 * LICENSE:
 *
 * BSD License
 *
 * Copyright (c) 2004-2006 Firman Wandayandi
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above
 *    copyright notice, this list of conditions and the following
 *    disclaimer in the documentation and/or other materials provided
 *    with the distribution.
 * 3. Neither the name of Firman Wandayandi nor the names of
 *    contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 *
 * @category Math
 * @package Math_Numerical_RootFinding
 * @subpackage Methods
 * @author Firman Wandayandi <firman@php.net>
 * @copyright Copyright (c) 2004-2006 Firman Wandayandi
 * @license http://www.opensource.org/licenses/bsd-license.php
 *          BSD License
 * @version CVS: $Id: Secant.php,v 1.2 2006/01/30 18:36:11 firman Exp $
 */

// }}}
// {{{ Dependencies

/**
 * Load Math_Numerical_RootFinding_Common as base class.
 */
require_once 'Math/Numerical/RootFinding/Common.php';

// }}}
// {{{ Class: Math_Numerical_RootFinding_Secant

/**
 * Secant method class.
 *
 * @category Math
 * @package Math_Numerical_RootFinding
 * @subpackage Methods
 * @author Firman Wandayandi <firman@php.net>
 * @copyright Copyright (c) 2004-2006 Firman Wandayandi
 * @license http://www.opensource.org/licenses/bsd-license.php
 *          BSD License
 * @version Release: 1.0.0
 */
class Math_Numerical_RootFinding_Secant
extends Math_Numerical_RootFinding_Common
{
    
// {{{ Constructor

    /**
     * Constructor.
     *
     * @param array $options (optional) Options.
     *
     * @access public
     * @see Math_Numerical_RootFinding_Common::Math_Numerical_RootFinding_Common()
     */
    
function Math_Numerical_RootFinding_Secant($options null)
    {
       
parent::Math_Numerical_RootFinding_Common($options);
    }

    
// }}}
    // {{{ infoCompute()

    /**
     * Print out parameters description for compute() function.
     *
     * @access public
     */
    
function infoCompute()
    {
        print 
"<h2>False Position::compute()</h2>\n" .

              
"<em>float</em> | <em>PEAR_Error</em> ".
              
"<strong>compute</strong>(<u>\$fxFunction</u>, <u>\$xR0</u>, ".
              
"<u>\$xR1</u>)<br />\n" .

              
"<h3>Description</h3>\n".

              
"<em>callback</em> <u>\$fxFunction</u> Callback f(x) equation ".
              
"function or object/method tuple.<br>\n" .

              
"<em>float</em> <u>\$xR0</u> First initial guess.<br>\n" .

              
"<em>float</em> <u>\$xR1</u> Second initial guess.<br>\n";
    }

    
// }}}
    // {{{ compute()

    /**
     * Secant method.
     *
     * @param callback $fxFunction Callback f(x) equation function or
     *                             object/method tuple.
     * @param float $xR0 First initial guess.
     * @param float $xR1 Second initial guess.
     *
     * @return float|PEAR_Error Root value on success or PEAR_Error on failure.
     * @access public
     * @see Math_Numerical_RootFinding_Common::validateEqFunction()
     * @see Math_Numerical_RootFinding_Common::getEqResult()
     * @see Math_Numerical_RootFinding_Common::isDivergentRow()
     * @see Math_Numerical_RootFinding_Ralstonrabinowitz::compute()
     */
    
function compute($fxFunction$xR0$xR1)
    {
        
// Validate f(x) equation function.
        
$err Math_Numerical_RootFinding_Common::validateEqFunction($fxFunction);
        if (
PEAR::isError($err)) {
            return 
$err;
        }

        
// Sets maximum iteration and tolerance from options.
        
$maxIteration $this->options['max_iteration'];
        
$errTolerance $this->options['err_tolerance'];

        
// Sets variable for saving errors during iteration, for divergent
        // detection.
        
$epsErrors = array();

        for(
$i 1$i <= $maxIteration$i++) {
            
// Calculate f(x[i-1]), where: x[i-1] = $xR0.
            
$fxR0 Math_Numerical_RootFinding_Common::getEqResult($fxFunction$xR0);

            
// Calculate f(x[i]), where: x[i] = $xR1.
            
$fxR1 Math_Numerical_RootFinding_Common::getEqResult($fxFunction$xR1);

            
// Avoid division by zero.
            
if ($fxR0 $fxR1 == 0) {
                return 
PEAR::raiseError('Iteration skipped division by zero');
            }

            
// Secant's formula.
            
$xN $xR1 - ($fxR1 * ($xR0 $xR1) / ($fxR0 $fxR1));

            
// xR is the root.
            
if ($xN == 0) {
                
$this->root $xR;
                break;
            }

            
// Compute error.
            
$this->epsError abs(($xN $xR1) / $xN);
            
$epsErrors[] = $this->epsError;

            
// Detect for divergent rows.
            
if ($this->isDivergentRows($epsErrors) &&
                
$this->options['divergent_skip'])
            {
                return 
PEAR::raiseError('Iteration skipped, divergent rows detected');
                break;
            }

            
// Check for error tolerance, if lower than or equal with
            // $errTolerance it is the root.
            
if ($this->epsError <= $errTolerance) {
                
$this->root $xR1;
                break;
            }

            
// Swicth the values for next iteration x[i] -> x[i-1] and
            // x[i+1] -> x[i], where: x[i-1] = $xR0, x[i] = $xR1, and
            // x[i+1] = $xN.
            
$xR0 $xR1;
            
$xR1 $xN;
        }
        
$this->iterationCount $i;
        return 
$this->root;
    }

    
// }}}
}

// }}}

/*
 * Local variables:
 * mode: php
 * tab-width: 4
 * c-basic-offset: 4
 * c-hanging-comment-ender-p: nil
 * End:
 */
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0312 ]--