dims | 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.