Home | History | Annotate | Download | only in src

Lines Matching refs:maxiter

448  * reciprocals in maxiter iterations, the convergence requirement will be
466 static void icvFindPolynomialRoots(const double *a, double *u, int n, int maxiter, int fig)
541 for (i = maxiter; i > 0; i--) {
642 void cvSolvePoly(const CvMat* a, CvMat *r, int maxiter, int fig)
677 icvFindPolynomialRoots( ad, rd, n, maxiter, fig);