ccmat: Columns concatenation

Description Usage Arguments Value Author(s) Examples

Description

Concatenates the columns of two matrices next to each other.

Usage

1
 ccmat(A, B)

Arguments

A

Matrix of the same order of B

B

Matrix of the same order of A

Value

mat

Matrix in which the columns of A and B are concatenated next to each other

Author(s)

Maria Antonietta Del Ferraro mariaantonietta.delferraro@yahoo.it
Henk A.L. Kiers h.a.l.kiers@rug.nl
Paolo Giordani paolo.giordani@uniroma1.it

Examples

1
2
3
X <- matrix(rnorm(6*3),ncol=3)
Y <- matrix(rnorm(6*3),ncol=3)
Z <- ccmat(X,Y)

ThreeWay documentation built on May 2, 2019, 9:20 a.m.

Related to ccmat in ThreeWay...