Click or drag to resize
mpfr_libmpfr_out_str Method
Output op on stream stream, as a string of digits in base base, rounded in the direction rnd.

Namespace:  Math.Mpfr.Native
Assembly:  Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static size_t mpfr_out_str(
	ptr<FILE> stream,
	int base,
	size_t n,
	mpfr_t op,
	mpfr_rnd_t rnd
)

Parameters

stream
Type: Math.Gmp.NativeptrFILE
The output stream.
base
Type: SystemInt32
The base.
n
Type: Math.Gmp.Nativesize_t
Number of significant digits.
op
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
rnd
Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.

Return Value

Type: size_t
Return the number of characters written, or if an error occurred, return 0.
Remarks

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.

Examples
// 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);
See Also