Lines Matching full:points
16 VectorType **points,
21 const int size = points[0]->size();
31 // now pick numPoints random points on this hyperplane
34 VectorType& cur_point = *(points[i]);
45 // add some noise to these points
47 *(points[i]) += noiseAmplitude * VectorType::Random(size);
52 VectorType **points,
56 int size = points[0]->size();
59 linearRegression(numPoints, points, &result, 1);
67 VectorType **points,
71 int size = points[0]->size();
73 fitHyperplane(numPoints, points, &result);