I get the following error:
error: no match for 'operator-' (operand types are 'QVector' and 'const float')
when trying to do:
dist.push_back(qPow((clusterMeanCoordinate[t].at(i) - hash_notClustered[t].at(point)), 2) + qPow((clusterMeanCoordinate[w] - hash_notClustered[w].at(point)), 2));
Note that:
QHash<int, QVector<float> > clusterMeanCoordinate;
QHash<int, QVector<float> > hash_notClustered;
QVector<float> dist;
Your error is here :
Here you are making a substraction between a
QVector
and aconst float
:You can solve it by doing :