powered by
Calculate matrix multiplication using "divide and conquer technique", which accelerates the computation to be faster.
xxt(X, window.size = 5)
An input matrix to be processed.
The window size of matrices to be devided. The default value is 5.
The multiplication matrix of X.t(X).
X.t(X)
# NOT RUN { #Use the example files embedded in the package. X <-matrix(runif(100), ncol=20) R1 <- xxt(X) #Show the result (R1) print(R1) R2 <- X %*% t(X) #Show the result (R2) print(R2) # }
Run the code above in your browser using DataLab