MathPHP\Statistics\Regression\Linear::calculate PHP 메소드

calculate() 공개 메소드

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