[BACK]Return to standard_random_vecvecs.ads CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / PHC / Ada / Math_Lib / Matrices

Annotation of OpenXM_contrib/PHC/Ada/Math_Lib/Matrices/standard_random_vecvecs.ads, Revision 1.1

1.1     ! maekawa     1: with Standard_Integer_VecVecs;
        !             2: with Standard_Floating_VecVecs;
        !             3: with Standard_Complex_VecVecs;
        !             4:
        !             5: package Standard_Random_VecVecs is
        !             6:
        !             7: -- DESCRIPTION :
        !             8: --   Offers routines to generate vecvecs of random standard numbers.
        !             9:
        !            10:   function Random_VecVec ( n,m : natural; low,upp : integer )
        !            11:                          return Standard_Integer_VecVecs.VecVec;
        !            12:
        !            13:   -- DESCRIPTION :
        !            14:   --   Returns m vectors of range 1..n with entries between low and upp.
        !            15:   --   The structure on return has range 1..m.
        !            16:
        !            17:   function Random_VecVec ( n,m : natural )
        !            18:                          return Standard_Floating_VecVecs.VecVec;
        !            19:
        !            20:   -- DESCRIPTION :
        !            21:   --   Returns m vectors of range 1..n with random floating numbers.
        !            22:   --   The structure on return has range 1..m.
        !            23:
        !            24:   function Random_VecVec ( n,m : natural )
        !            25:                          return Standard_Complex_VecVecs.VecVec;
        !            26:
        !            27:   -- DESCRIPTION :
        !            28:   --   Returns m vectors of range 1..n with random complex numbers.
        !            29:   --   The structure on return has range 1..m.
        !            30:
        !            31: end Standard_Random_VecVecs;

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>