Phpml\Clustering\KMeans\Cluster::getPoints PHP Méthode

getPoints() public méthode

public getPoints ( ) : array
Résultat array
    public function getPoints()
    {
        $points = [];
        foreach ($this->points as $point) {
            $points[] = $point->toArray();
        }
        return $points;
    }