php-ml/src/Phpml/Clustering/Clusterer.php

16 lines
207 B
PHP
Raw Normal View History

2016-05-01 00:47:44 +02:00
<?php
2016-05-01 00:56:43 +02:00
declare (strict_types = 1);
2016-05-01 00:47:44 +02:00
namespace Phpml\Clustering;
interface Clusterer
{
/**
* @param array $samples
*
* @return array
*/
public function cluster(array $samples);
}