Computes A %*% t(B) using the dedicated BigDataStatMeth
block-wise transposed cross-product algorithm. When A and B refer to the
same dataset, the symmetric optimisation is applied automatically.
rcpp_hdf5dataset_tcrossprod(
ptr_a,
ptr_b,
paral = NULL,
block_size = NULL,
threads = NULL,
compression = NULL,
outgroup = NULL,
outdataset = NULL
)Named list with filename and path of the result.
External pointer (SEXP) for matrix A
External pointer (SEXP) for matrix B
Logical or NULL; enable OpenMP parallelisation
Integer or NULL; block size (NULL = auto)
Integer or NULL; thread count when paral = TRUE
Character or NULL. Output group in the HDF5 file.
Default "OUTPUT".
Character or NULL. Output dataset name.
Default "tCrossProd_A" (single matrix) or
"tCrossProd_A_x_B" (two matrices).