Home | History | Annotate | Download | only in src

Lines Matching full:vectx

68     CvMat *vectX = 0;
131 CV_CALL( vectX = cvCreateMat(numVal, 1, CV_64F) );
144 cvCopy(X0,vectX);
158 function(vectX,resFunc);
168 /* Compute Jacobian for given point vectX */
169 JacobianFunction(vectX,Jac);
197 cvAdd(vectX,delta,vectNewX);
212 change = cvNorm(vectX, vectNewX, CV_RELATIVE_L2);
215 cvCopy(vectNewX,vectX);
230 cvCopy(vectX,resultX);
234 cvReleaseMat(&vectX);
253 void Jac_Func2(CvMat *vectX,CvMat *Jac)
255 double x = cvmGet(vectX,0,0);
256 double y = cvmGet(vectX,1,0);
265 void Res_Func2(CvMat *vectX,CvMat *res)
267 double x = cvmGet(vectX,0,0);
268 double y = cvmGet(vectX,1,0);