PHP Trait MathPHP\Statistics\Regression\Models\MichaelisMenten

V * x y = ---------- K + x https://en.wikipedia.org/wiki/Michaelis%E2%80%93Menten_kinetics
Datei anzeigen Open project: markrogoyski/math-php

Protected Properties

Property Type Description
$K V parameter index
$V

Public Methods

Method Description
evaluateModel ( number $x, array $params ) : number Evaluate the equation using the regression parameters y = (V * X) / (K + X)
getModelEquation ( array $params ) : string Get regression equation (y = V * X / (K + X))
getModelParameters ( array $params ) : array Get regression parameters (V and K)

Method Details

evaluateModel() public static method

Evaluate the equation using the regression parameters y = (V * X) / (K + X)
public static evaluateModel ( number $x, array $params ) : number
$x number
$params array
return number y evaluated

getModelEquation() public static method

Get regression equation (y = V * X / (K + X))
public static getModelEquation ( array $params ) : string
$params array
return string

getModelParameters() public static method

Get regression parameters (V and K)
public static getModelParameters ( array $params ) : array
$params array
return array [ V => number, K => number ]

Property Details

$K protected_oe static_oe property

V parameter index
protected static $K

$V protected_oe static_oe property

protected static $V