median() public static method

public static median ( array $numbers ) : float | mixed
$numbers array
return float | mixed
コード例 #1
0
ファイル: MeanTest.php プロジェクト: php-ai/php-ml
 public function testMedianOnEvenLengthArray()
 {
     $numbers = [5, 2, 6, 1, 3, 4];
     $this->assertEquals(3.5, Mean::median($numbers));
 }