blockSize {symDMatrix} | R Documentation |
Return the Block Size of a symDMatrix Object
Description
This function returns the block size of a symDMatrix
object.
Usage
blockSize(x, last = FALSE)
Arguments
x |
A |
last |
A boolean indicating whether to return the block size of the last
( |
Details
The last block of a column/row may be smaller than the other blocks. Its
size can be retrieved by setting last
to TRUE
.
Value
The block size of a symDMatrix
object.
Examples
# Load example symDMatrix (G)
load.symDMatrix(system.file("extdata", "G.RData", package = "symDMatrix"), readonly = TRUE)
# Get the block size
blockSize(G)
# Get the block size of the trailing blocks
blockSize(G, last = TRUE)
[Package symDMatrix version 2.1.1 Index]