mpfr_libmpfr_out_str Method |
Namespace: Math.Mpfr.Native
public static size_t mpfr_out_str( ptr<FILE> stream, int base, size_t n, mpfr_t op, mpfr_rnd_t rnd )
The base may vary from 2 to 62. Print n significant digits exactly, or if n is 0, enough digits so that op can be read back exactly (see O:Math.Mpfr.Native.mpfr_lib.mpfr_get_str).
In addition to the significant digits, a decimal point (defined by the current locale) at the right of the first digit and a trailing exponent in base 10, in the form ‘eNNN’, are printed. If base is greater than 10, ‘@’ will be used instead of ‘e’ as exponent delimiter.
// Create, initialize, and set the value of op to 123456. mpfr_t op = new mpfr_t(); mpfr_lib.mpfr_init2(op, 64U); mpfr_lib.mpfr_set_ui(op, 123456U, mpfr_rnd_t.MPFR_RNDN); // Get a temporary file. string pathname = System.IO.Path.GetTempFileName(); // Open temporary file for writing. ptr<FILE> stream = new ptr<FILE>(); _wfopen_s(out stream.Value.Value, pathname, "w"); // Write op to temporary file, and assert that the number of bytes written is 24. Assert.IsTrue(mpfr_lib.mpfr_out_str(stream, 10, 0, op, mpfr_rnd_t.MPFR_RNDN) == 24); // Close temporary file. fclose(stream.Value.Value); // Assert that the content of the temporary file is "123456". string result = System.IO.File.ReadAllText(pathname); Assert.IsTrue(result == "1.23456000000000000000e5"); // Delete temporary file. System.IO.File.Delete(pathname); // Release unmanaged memory allocated for op. mpfr_lib.mpfr_clear(op);