powered by
This function implements a simple cache-oblivious algorithm for the transposition of a Filebacked Big Matrix.
big_transpose(X, backingfile = tempfile())
An object of class FBM.
Path to the file storing the Big Matrix on disk. An extension ".bk" will be automatically added. Default stores in the temporary directory.
The new transposed FBM. Dimensions and type are automatically determined from the input FBM.
# NOT RUN { X <- FBM(6, 5, init = rnorm(30)) X[] Xt <- big_transpose(X) identical(t(X[]), Xt[]) # }
Run the code above in your browser using DataLab