[BACK]Return to standard_random_vectors.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_vectors.ads, Revision 1.1

1.1     ! maekawa     1: with Standard_Integer_Vectors;
        !             2: with Standard_Floating_Vectors;
        !             3: with Standard_Complex_Vectors;
        !             4:
        !             5: package Standard_Random_Vectors is
        !             6:
        !             7: -- DESCRIPTION :
        !             8: --   Offers routines to generate vectors of random standard numbers.
        !             9:
        !            10:   function Random_Vector ( first,last : natural; low,upp : integer )
        !            11:                          return Standard_Integer_Vectors.Vector;
        !            12:
        !            13:   -- DESCRIPTION :
        !            14:   --   Returns a vector of range first..last with entries between low and upp.
        !            15:
        !            16:   function Random_Vector ( first,last : natural )
        !            17:                          return Standard_Floating_Vectors.Vector;
        !            18:
        !            19:   -- DESCRIPTION :
        !            20:   --   Returns a vector of range first..last with random floating numbers.
        !            21:
        !            22:   function Random_Vector ( first,last : natural )
        !            23:                          return Standard_Complex_Vectors.Vector;
        !            24:
        !            25:   -- DESCRIPTION :
        !            26:   --   Returns a vector of range first..last with random complex numbers.
        !            27:
        !            28: end Standard_Random_Vectors;

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