digits(x): Significant Binary Digits¶
Significant binary digits.
Declaración¶
Sintaxis¶
retval = digits(x)
Argumentos¶
x
the input value must be of type real or integer.
Valores devueltos¶
El valor devuelto es de tipo entero.
Descripción¶
digits(x) returns the number of significant binary digits of the internal
mopdel representation of x
.
Tipos¶
Supported argument types are real and integer.
Ejemplos¶
program intrinsics_digits
print *, digits(3.1)
end program
Result:
24