summaryrefslogtreecommitdiff
path: root/random2.c
diff options
context:
space:
mode:
Diffstat (limited to 'random2.c')
-rw-r--r--random2.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/random2.c b/random2.c
new file mode 100644
index 0000000..bb08f04
--- /dev/null
+++ b/random2.c
@@ -0,0 +1,31 @@
+/* mpc_random2 -- Generate a random complex number.
+
+Copyright (C) 2002 Andreas Enge, Paul Zimmermann
+
+This file is part of the MPC Library.
+
+The MPC Library is free software; you can redistribute it and/or modify
+it under the terms of the GNU Lesser General Public License as published by
+the Free Software Foundation; either version 2.1 of the License, or (at your
+option) any later version.
+
+The MPC Library is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with the MPC Library; see the file COPYING.LIB. If not, write to
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+MA 02111-1307, USA. */
+
+#include "gmp.h"
+#include "mpfr.h"
+#include "mpc.h"
+
+void
+mpc_random2 (mpc_ptr a, mp_size_t size, mp_exp_t exp)
+{
+ mpfr_random2 (MPC_RE(a), size, exp);
+ mpfr_random2 (MPC_IM(a), size, exp);
+}