MathPHP\Statistics\Regression\PowerLawTest::testGetEquation PHP Method

testGetEquation() public method

public testGetEquation ( array $points )
$points array
    public function testGetEquation(array $points)
    {
        $regression = new PowerLaw($points);
        $this->assertRegExp('/^y = \\d+[.]\\d+x\\^\\d+[.]\\d+$/', $regression->getEquation());
    }