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

15 lines
198 B
PHP
Raw Normal View History

2016-04-04 20:25:27 +00:00
<?php
2016-04-04 20:49:54 +00:00
2016-11-20 21:53:17 +00:00
declare(strict_types=1);
2016-04-04 20:25:27 +00:00
2016-04-20 21:56:33 +00:00
namespace Phpml\Math;
2016-04-04 20:25:27 +00:00
interface Distance
2016-04-04 20:25:27 +00:00
{
/**
* @param array $a
* @param array $b
*/
public function distance(array $a, array $b): float;
2016-04-04 20:25:27 +00:00
}