Bladeren bron

minor change on documentation of KMedian

Alexander Freytag 12 jaren geleden
bovenliggende
commit
43c94a1e95
1 gewijzigde bestanden met toevoegingen van 3 en 3 verwijderingen
  1. 3 3
      math/cluster/KMedian.h

+ 3 - 3
math/cluster/KMedian.h

@@ -35,7 +35,7 @@ namespace OBJREC {
        **************************/ 
       
         //! desired number of clusters
-        int noClasses;
+        int noClusters;
         
         //! specify which distance to use for calculating assignments
         std::string distanceType;
@@ -92,10 +92,10 @@ namespace OBJREC {
     
         /**
         * @brief simple constructor
-        * @param _noClasses the number of clusters to be computed
+        * @param _noClusters the number of clusters to be computed
         * @param _distanceMode a string specifying the distance function to be used (default: euclidean)
         */
-        KMedian( const int & _noClasses , const std::string & _distanceMode="euclidean");
+        KMedian( const int & _noClusters , const std::string & _distanceMode="euclidean");
         
         /**
         * @brief standard constructor