Phpml\Clustering\KMeans\Cluster::getPoints PHP Method

getPoints() public method

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