Annotation of OpenXM_contrib/PHC/Ada/Schubert/standard_matrix_inversion.ads, Revision 1.1.1.1
1.1 maekawa 1: with Standard_Floating_Matrices;
2: with Standard_Complex_Matrices;
3:
4: package Standard_Matrix_Inversion is
5:
6: -- DESCRIPTION :
7: -- The functions below return the inverse of a given square matrix.
8: -- This type of operation is useful for change of basis.
9:
10: function Inverse ( m : Standard_Floating_Matrices.Matrix )
11: return Standard_Floating_Matrices.Matrix;
12:
13: function Inverse ( m : Standard_Complex_Matrices.Matrix )
14: return Standard_Complex_Matrices.Matrix;
15:
16: end Standard_Matrix_Inversion;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>