Description Usage Arguments Details Value Note Author(s) References Examples
Binary operator, given matrices x and y as arguments, return a matrix cross-product.
1 | x %c% y
|
x |
(m*n) matrix. |
y |
(m*q) matrix. |
result is (n*m) matrix = t(x) %*% y, sum(x[,i]*y[,j])
A double or complex matrix, with appropriate dimnames taken from x and y.
This is binary operator of crossprod
adjusted in nlr
for more streamlined and readable. Mostly used in optimization functions, might not be called by user explicitly.
Hossein Riazoshams, May 2014. Email: riazihosein@gmail.com URL http://www.riazoshams.com/nlr/
Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.
1 2 3 4 5 6 7 8 9 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.