polylib 5.22.8
NormalForms.h
Go to the documentation of this file.
1#if defined(__cplusplus)
2extern "C" {
3#endif
4
5extern void Smith(Matrix *A, Matrix **U, Matrix **V, Matrix **Product);
6extern void Hermite(Matrix *A, Matrix **H, Matrix **U);
7
8#if defined(__cplusplus)
9}
10#endif
void Smith(Matrix *A, Matrix **U, Matrix **V, Matrix **Product)
Smith : This function takes a Matrix A of dim n * l as its input and returns the three matrices U,...
Definition: NormalForms.c:621
void Hermite(Matrix *A, Matrix **H, Matrix **U)
Hermite : This function takes a Matrix as its input and finds its HNF ( Left form )
Definition: NormalForms.c:663
Definition: types.h:75