Lines Matching full:1000
86 Vector2f points2f [1000];
87 Vector2f *points2f_ptrs [1000];
88 for(int i = 0; i < 1000; i++) points2f_ptrs[i] = &(points2f[i]);
91 makeNoisyCohyperplanarPoints(1000, points2f_ptrs, &coeffs3f, 0.01f);
96 CALL_SUBTEST(check_linearRegression(1000, points2f_ptrs, coeffs2f, 0.002f));
101 Vector2f points2f [1000];
102 Vector2f *points2f_ptrs [1000];
103 for(int i = 0; i < 1000; i++) points2f_ptrs[i] = &(points2f[i]);
105 makeNoisyCohyperplanarPoints(1000, points2f_ptrs, &coeffs3f, 0.01f);
108 CALL_SUBTEST(check_fitHyperplane(1000, points2f_ptrs, coeffs3f, 0.002f));
113 Vector4d points4d [1000];
114 Vector4d *points4d_ptrs [1000];
115 for(int i = 0; i < 1000; i++) points4d_ptrs[i] = &(points4d[i]);
117 makeNoisyCohyperplanarPoints(1000, points4d_ptrs, &coeffs5d, 0.01);
120 CALL_SUBTEST(check_fitHyperplane(1000, points4d_ptrs, coeffs5d, 0.002));
125 VectorXcd *points11cd_ptrs[1000];
126 for(int i = 0; i < 1000; i++) points11cd_ptrs[i] = new VectorXcd(11);
128 makeNoisyCohyperplanarPoints(1000, points11cd_ptrs, coeffs12cd, 0.01);
130 CALL_SUBTEST(check_fitHyperplane(1000, points11cd_ptrs, *coeffs12cd, 0.006));
132 for(int i = 0; i < 1000; i++) delete points11cd_ptrs[i];