Annotation of OpenXM_contrib/PHC/Ada/Math_Lib/Matrices/multprec_random_matrices.ads, Revision 1.1.1.1
1.1 maekawa 1: with Multprec_Integer_Matrices;
2: with Multprec_Floating_Matrices;
3: with Multprec_Complex_Matrices;
4:
5: package Multprec_Random_Matrices is
6:
7: -- DESCRIPTION :
8: -- Offers routines to generate random matrices of multi-precision numbers.
9:
10: function Random_Matrix ( n,m,sz : natural )
11: return Multprec_Integer_Matrices.Matrix;
12:
13: -- DESCRIPTION :
14: -- Returns a matrix of range 1..n,1..m with entries of size sz.
15:
16: function Random_Matrix ( n,m,sz : natural )
17: return Multprec_Floating_Matrices.Matrix;
18:
19: -- DESCRIPTION :
20: -- Returns a matrix of range 1..n,1..m with entries of size sz.
21:
22: function Random_Matrix ( n,m,sz : natural )
23: return Multprec_Complex_Matrices.Matrix;
24:
25: -- DESCRIPTION :
26: -- Returns a matrix of range 1..n,1..m with entries of size sz.
27:
28: end Multprec_Random_Matrices;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>