dims {float} | R Documentation |
Dimension information for a float vector/matrix.
## S4 method for signature 'float32' nrow(x) ## S4 method for signature 'float32' ncol(x) ## S4 method for signature 'float32' NROW(x) ## S4 method for signature 'float32' NCOL(x) ## S4 method for signature 'float32' dim(x) ## S4 method for signature 'float32' length(x) ## S4 replacement method for signature 'float32' dim(x) <- value
x |
A float vector/matrix. |
value |
The right hand side for the "setter" ( |
The requested integer values.
library(float) s = flrunif(10, 3) dim(s) nrow(s) ncol(s)