rbind.FLMatrix: Combine objects by rows.

Description Usage Arguments Details Value Constraints Examples

Description

rbind combines input objects by rows and forms a FLMatrix.

Usage

1
2
## S3 method for class 'FLMatrix'
rbind(x, ...)

Arguments

x...

can be a sequence of vector, FLVector, matrix, FLMatrix or data frames

Details

rbind takes a sequence of vector, FLVector, matrix, FLMatrix or data frames arguments, combines them by rows and makes a FLMatrix.

Value

rbind returns a FLMatrix object which is the row wise combination of input arguments.

Constraints

Input matrices, FLMatrices and data frames should have same number of columns.

Examples

1
2
flmatrix <- FLMatrix("tblMatrixMulti", 5)
resultFLMatrix <- rbind(flmatrix,1:5,flmatrix)

Fuzzy-Logix/AdapteR documentation built on May 6, 2019, 5:07 p.m.