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)) {
|
2016-04-18 20:58:43 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|