fortran-lapack icon indicating copy to clipboard operation
fortran-lapack copied to clipboard

Create a crossprod() function similar to that of R

Open Beliavsky opened this issue 11 months ago • 0 comments

R has a crossprod function.

"Given matrices x and y as arguments, return a matrix cross-product. This is formally equivalent to (but usually slightly faster than) the call t(x) %% y (crossprod) or x %% t(y) (tcrossprod)."

I suggest that a wrapper for gemm be created to do this.

Beliavsky avatar Nov 12 '24 14:11 Beliavsky