Click or drag to resize
mpfr_libmpfr_fpif_export Method
Export the number op to the stream stream in a floating-point interchange format.

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 int mpfr_fpif_export(
	ptr<FILE> stream,
	mpfr_t op
)

Parameters

stream
Type: Math.Gmp.NativeptrFILE
The export stream.
op
Type: Math.Mpfr.Nativempfr_t
The floating-point number.

Return Value

Type: Int32
Return 0 iff the export was successful.
Remarks

In particular one can export on a 32-bit computer and import on a 64-bit computer, or export on a little-endian computer and import on a big-endian computer. The precision of op and the sign bit of a NaN are stored too.

Note: this function is experimental and its interface might change in future versions.

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");

// Export op to temporary file.
Assert.IsTrue(mpfr_lib.mpfr_fpif_export(stream, op) == 0);
fclose(stream.Value.Value);

// Read op from the temporary file.
mpfr_lib.mpfr_set_ui(op, 0, mpfr_rnd_t.MPFR_RNDN);
stream = new ptr<FILE>();
_wfopen_s(out stream.Value.Value, pathname, "r");
Assert.IsTrue(mpfr_lib.mpfr_fpif_import(op, stream) == 0);
fclose(stream.Value.Value);

// Assert that op is 123456.
Assert.IsTrue(mpfr_lib.mpfr_get_ui(op, mpfr_rnd_t.MPFR_RNDN) == 123456U);

// Delete temporary file.
System.IO.File.Delete(pathname);

// Release unmanaged memory allocated for op.
mpfr_lib.mpfr_clear(op);
See Also