1 <?php 2 3 declare(strict_types=1); 4 5 namespace Phpml\Math\Distance; 6 7 /** 8 * Class Chebyshev 9 */ 10 class Chebyshev extends Distance 11 { 12 /** 13 * {@inheritdoc} 14 */ 15 public function distance(array $a, array $b): float 16 { 17 return max($this->deltas($a, $b)); 18 } 19 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body