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

File: [local] / OpenXM_contrib / PHC / Ada / Math_Lib / Matrices / multprec_complex_vector_tools.ads (download)

Revision 1.1, Sun Oct 29 17:45:23 2000 UTC (23 years, 8 months ago) by maekawa
Branch point for: MAIN

Initial revision

with Standard_Complex_Vectors;
with Multprec_Complex_Vectors;

package Multprec_Complex_Vector_Tools is

-- DESCRIPTION :
--   Here are some tools for multi-precision vectors.

  function Create ( v : Standard_Complex_Vectors.Vector )
                  return Multprec_Complex_Vectors.Vector;

  -- DESCRIPTION :
  --   Converts the standard complex vector into a multi-precision vector.

  procedure Set_Size ( v : in out Multprec_Complex_Vectors.Vector;
                       size : in natural );

  -- DESCRIPTION :
  --   Adjusts the size of the numbers in v to the given size.

end Multprec_Complex_Vector_Tools;