cbind.ColumnLinkedMatrix {LinkedMatrix}R Documentation

Combine Matrix-Like Objects by Columns or Rows

Description

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.

Usage

## S3 method for class 'ColumnLinkedMatrix'
cbind(..., deparse.level = 0L)

## S3 method for class 'RowLinkedMatrix'
rbind(..., deparse.level = 1L)

Arguments

...

Matrix-like objects to be combined by columns.

deparse.level

Currently unused, defaults to 0.

Details

cbind.ColumnLinkedMatrix currently only works for ColumnLinkedMatrix objects, rbind.RowLinkedMatrix only for RowLinkedMatrix.

See Also

ColumnLinkedMatrix-class, RowLinkedMatrix-class, and LinkedMatrix-class for more information on the ColumnLinkedMatrix, RowLinkedMatrix, and LinkedMatrix classes.


[Package LinkedMatrix version 1.4.0 Index]