| as.numeric {Brobdingnag} | R Documentation | 
Coerces to numeric or complex form
Description
Coerces an object of class brob to numeric, or an object of
class glub to complex
Arguments
| x | Object of class  | 
| ... | Further arguments (currently ignored) | 
Details
Function as.numeric() coerces a brob  to numeric; if given
a glub, the imaginary component is ignored (and a warning given).
Function as.complex() coerces to complex.
Note
If \left|x\right| is greater than
.Machine$double.xmax, then as.numeric(x) returns
Inf or -Inf but no warning is given.
Author(s)
Robin K. S. Hankin
Examples
a <- as.brob(1:10)
a <- cbrob(a, as.brob(10)^1e26)
a
as.numeric(a)
as.complex(10i + a)
[Package Brobdingnag version 1.2-9 Index]