gmp_lib.mpf_sqrt_ui Method

GMP Native Interface for .NET

gmp_libmpf_sqrt_ui Method
Set rop to the square root of op.

Namespace:  Math.Gmp.Native
Assembly:  Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void mpf_sqrt_ui(
	mpf_t rop,
	uint op
)
Public Shared Sub mpf_sqrt_ui ( 
	rop As mpf_t,
	op As UInteger
)
public:
static void mpf_sqrt_ui(
	mpf_t^ rop, 
	unsigned int op
)
static member mpf_sqrt_ui : 
        rop : mpf_t * 
        op : uint32 -> unit 

Parameters

rop
Type: Math.Gmp.Nativempf_t
The result float.
op
Type: SystemUInt32
The operand.
Examples
// Set default precision to 64 bits.
gmp_lib.mpf_set_default_prec(64U);

// Create and initialize a new floating-point number z.
mpf_t z = new mpf_t();
gmp_lib.mpf_init(z);

// Set z = sqrt(100).
gmp_lib.mpf_sqrt_ui(z, 100U);

// Assert that the value of z is 10.
Assert.IsTrue(gmp_lib.mpf_get_d(z) == 10.0);

// Release unmanaged memory allocated for x and z.
gmp_lib.mpf_clear(z);
' Set default precision to 64 bits.
gmp_lib.mpf_set_default_prec(64UI)

' Create and initialize a new floating-point number z.
Dim z As New mpf_t()
gmp_lib.mpf_init(z)

' Set z = sqrt(100).
gmp_lib.mpf_sqrt_ui(z, 100UI)

' Assert that the value of z is 10.
Assert.IsTrue(gmp_lib.mpf_get_d(z) = 10.0)

' Release unmanaged memory allocated for x and z.
gmp_lib.mpf_clear(z)

No code example is currently available or this language may not be supported.

No code example is currently available or this language may not be supported.

See Also