HomeSort by relevance Sort by last modified time
    Searched defs:Cholesky (Results 1 - 4 of 4) sorted by null

  /external/opencv3/modules/hal/src/
matrix.cpp 48 * LU & Cholesky implementation for small matrices *
198 bool Cholesky(float* A, size_t astep, int m, float* b, size_t bstep, int n)
203 bool Cholesky(double* A, size_t astep, int m, double* b, size_t bstep, int n)
  /external/ceres-solver/internal/ceres/
suitesparse.cc 248 LinearSolverTerminationType SuiteSparse::Cholesky(cholmod_sparse* A,
268 // that the return value Cholesky is two valued, but the state of
  /external/opencv3/modules/ml/src/
inner_functions.cpp 115 static void Cholesky( const Mat& A, Mat& S )
162 Cholesky(cov, utmat);
  /external/opencv3/modules/core/src/
lapack.cpp 63 bool Cholesky(float* A, size_t astep, int m, float* b, size_t bstep, int n)
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)
70 return hal::Cholesky(A, astep, m, b, bstep, n);
    [all...]

Completed in 805 milliseconds