ccmat {ThreeWay} | R Documentation |
Concatenates the columns of two matrices next to each other.
ccmat(A, B)
A |
Matrix of the same order of |
B |
Matrix of the same order of |
mat |
Matrix in which the columns of |
Maria Antonietta Del Ferraro mariaantonietta.delferraro@yahoo.it
Henk A.L. Kiers h.a.l.kiers@rug.nl
Paolo Giordani paolo.giordani@uniroma1.it
X <- matrix(rnorm(6*3),ncol=3)
Y <- matrix(rnorm(6*3),ncol=3)
Z <- ccmat(X,Y)