Compared to the ColumnLinkedMatrix and RowLinkedMatrix
constructor functions, nested LinkedMatrix objects that are passed
via ... will not be treated as matrix-like objects, but their nodes
will be extracted and merged with the new ColumnLinkedMatrix (for
cbind.ColumnLinkedMatrix) or RowLinkedMatrix (for
rbind.RowLinkedMatrix) object for a more compact representation.
# S3 method for ColumnLinkedMatrix
cbind(..., deparse.level = 0L)# S3 method for RowLinkedMatrix
rbind(..., deparse.level = 1L)
Matrix-like objects to be combined by columns.
Currently unused, defaults to 0.
cbind.ColumnLinkedMatrix currently only works for
ColumnLinkedMatrix objects, rbind.RowLinkedMatrix only for
RowLinkedMatrix.
ColumnLinkedMatrix-class,
RowLinkedMatrix-class, and LinkedMatrix-class
for more information on the ColumnLinkedMatrix,
RowLinkedMatrix, and LinkedMatrix classes.