Misc$interleave {IdMappingAnalysis} | R Documentation |
Interleave two matrixes by columns.
## Static method (use this): ## Misc$interleave(A, B, ...) ## Don't use the below: ## S3 method for class 'Misc' interleave(stati, A, B, ...)
A |
First |
B |
Second |
... |
Not used |
matrix
composed of A and B merged by interleaving of their columns.
Alex Lisovich, Roger Day
For more information see Misc
.
## Not run: C<-Misc$interleave(A,B); ## End(Not run)