Performs Cholesky decomposition of matrix and solves matrix equation .
- Parameters
-
src1 | pointer to input matrix stored in row major order. After finish of work src1 contains lower triangular matrix . |
src1_step | number of bytes between two consequent rows of matrix . |
m | size of square matrix . |
src2 | pointer to matrix which is the right-hand side of system . B stored in row major order. If src2 is null pointer only Cholesky decomposition will be performed. After finish of work src2 contains solution of system . |
src2_step | number of bytes between two consequent rows of matrix . |
n | number of right-hand vectors in matrix . |
info | indicates success of decomposition. If *info is false decomposition failed. |
|
int | hal_ni_Cholesky32f (float *src1, size_t src1_step, int m, float *src2, size_t src2_step, int n, bool *info) |
|
int | hal_ni_Cholesky64f (double *src1, size_t src1_step, int m, double *src2, size_t src2_step, int n, bool *info) |
|
◆ hal_ni_Cholesky32f()
int hal_ni_Cholesky32f |
( |
float * | src1, |
|
|
size_t | src1_step, |
|
|
int | m, |
|
|
float * | src2, |
|
|
size_t | src2_step, |
|
|
int | n, |
|
|
bool * | info ) |
|
inline |
◆ hal_ni_Cholesky64f()
int hal_ni_Cholesky64f |
( |
double * | src1, |
|
|
size_t | src1_step, |
|
|
int | m, |
|
|
double * | src2, |
|
|
size_t | src2_step, |
|
|
int | n, |
|
|
bool * | info ) |
|
inline |