PhpBench\Tests\Unit\Math\StatisticsTest::testLinearSpace PHP Method

testLinearSpace() public method

It should generate a linear space.
public testLinearSpace ( $min, $max, $steps, $endpoint, $expected )
    public function testLinearSpace($min, $max, $steps, $endpoint, $expected)
    {
        $result = Statistics::linspace($min, $max, $steps, $endpoint);
        $this->assertEquals($expected, $result);
    }