php-ml/src/Phpml/Math/Distance/Chebyshev.php

36 lines
694 B
PHP
Raw Normal View History

2016-04-11 19:44:48 +00:00
<?php
declare (strict_types = 1);
2016-04-20 21:56:33 +00:00
namespace Phpml\Math\Distance;
2016-04-11 19:44:48 +00:00
use Phpml\Exception\InvalidArgumentException;
2016-04-20 21:56:33 +00:00
use Phpml\Math\Distance;
2016-04-11 19:44:48 +00:00
class Chebyshev implements Distance
{
/**
* @param array $a
* @param array $b
*
* @return float
*
* @throws InvalidArgumentException
*/
public function distance(array $a, array $b): float
{
if (count($a) !== count($b)) {
throw InvalidArgumentException::arraySizeNotMatch();
2016-04-11 19:44:48 +00:00
}
$differences = [];
$count = count($a);
for ($i = 0; $i < $count; ++$i) {
$differences[] = abs($a[$i] - $b[$i]);
}
return max($differences);
}
}