comb.matrix {NTW}R Documentation

Create all combinations of vectors

Description

Create all combinations of vectors especially for matrices.

Usage

comb.matrix(x, y)

Arguments

x

A vector.

y

A vector.

Value

A matrix with nrow(x)*nrow(y) rows and ncol(x)+ncol(y) columns.

Author(s)

Wei Xiao, Yin Jin, Darong Lai, Xinyi Yang, Yuanhua Liu, Christine Nardini

Examples

###A matrix with only one row is obtained####
x<-c(1,2,3)
y<-c(4,5)
comb.matrix(x,y)
###A matrix with 2 rows and 4 columns is obtained####
x<-matrix(x,1,)
y<-matrix(y,,1)
comb.matrix(x,y)


[Package NTW version 1.43.0 Index]