Searched defs:Cholesky (Results 1 - 4 of 4) sorted by relevance

/external/opencv3/modules/hal/src/
H A Dmatrix.cpp48 * LU & Cholesky implementation for small matrices *
198 bool Cholesky(float* A, size_t astep, int m, float* b, size_t bstep, int n) function in namespace:cv::hal
203 bool Cholesky(double* A, size_t astep, int m, double* b, size_t bstep, int n) function in namespace:cv::hal
/external/ceres-solver/internal/ceres/
H A Dsuitesparse.cc248 LinearSolverTerminationType SuiteSparse::Cholesky(cholmod_sparse* A, function in class:ceres::internal::SuiteSparse
268 // that the return value Cholesky is two valued, but the state of
/external/opencv3/modules/ml/src/
H A Dinner_functions.cpp115 static void Cholesky( const Mat& A, Mat& S ) function in namespace:cv::ml
162 Cholesky(cov, utmat);
/external/opencv3/modules/core/src/
H A Dlapack.cpp63 bool Cholesky(float* A, size_t astep, int m, float* b, size_t bstep, int n) function in namespace:cv
65 return hal::Cholesky(A, astep, m, b, bstep, n);
68 bool Cholesky(double* A, size_t astep, int m, double* b, size_t bstep, int n) function in namespace:cv
70 return hal::Cholesky(A, astep, m, b, bstep, n);
1034 result = hal::Cholesky(src1.ptr<float>(), src1.step, n, dst.ptr<float>(), dst.step, n);
1036 result = hal::Cholesky(src1.ptr<double>(), src1.step, n, dst.ptr<double>(), dst.step, n);
1275 result = hal::Cholesky(a.ptr<float>(), a.step, n, dst.ptr<float>(), dst.step, nb);
1277 result = hal::Cholesky(a.ptr<double>(), a.step, n, dst.ptr<double>(), dst.step, nb);

Completed in 118 milliseconds