Method NumDen
NumDen(BigRational, out BigRational.Integer)
Returns the Numerator and the Denominator of the specified number.
Declaration
public static BigRational.Integer NumDen(BigRational a, out BigRational.Integer den)
Parameters
| Type | Name | Description |
|---|---|---|
| BigRational | a | A BigRational integer number |
| BigRational.Integer | den | returns the denominator of |
Returns
| Type | Description |
|---|---|
| BigRational.Integer | Returns the numerator of |
NumDen(BigRational)
Returns the numerator and the denominator of the specified number.
Declaration
public static (BigRational.Integer, BigRational.Integer) NumDen(BigRational a)
Parameters
| Type | Name | Description |
|---|---|---|
| BigRational | a | A BigRational integer number |
Returns
| Type | Description |
|---|---|
| System.ValueTuple<BigRational.Integer, BigRational.Integer> | Returns the numerator and denominator of |