Пример #1
0
 public function testKendallsTauExceptionDifferentLengthArrays()
 {
     $X = [1, 2, 3];
     $Y = [2, 3, 4, 5];
     $this->setExpectedException('MathPHP\\Exception\\BadDataException');
     Correlation::kendallsTau($X, $Y);
 }