rbind_bigmatrix: Combind two matrices by row for big data, internally used for...

Description Usage Arguments Value See Also Examples

View source: R/filest.R

Description

Combind two matrices by row for big data, internally used for parallelization

Usage

1

Arguments

a

The first matrix

b

The second matrix

Value

The combined matrix by row

See Also

cbind_bigmatrix

Examples

1
2
3
4
X <- matrix(c(1,2,0,1,2,2,1,2,0,0,1,2,1,2,2,2),ncol=4)
Y <- matrix(c(2,1,1,0,1,0,0,1,1,2,2,0,0,1,1,0),ncol=4)
Z <- rbind_bigmatrix(X,Y)
print(Z)

FILEST documentation built on Jan. 25, 2021, 5:05 p.m.