MathPHP\Statistics\Regression\Linear::calculate PHP Method

calculate() public method

Calculates the regression parameters.
public calculate ( )
    public function calculate()
    {
        $this->parameters = $this->leastSquares($this->ys, $this->xs)->getColumn(0);
    }