View source: R/fastMatMR-package.R
fmm_to_mat | R Documentation |
This function reads a Matrix Market file and converts it to a matrix in R.
fmm_to_mat(filename)
filename |
The name of the input Matrix Market file to be read. |
A matrix containing the data read from the Matrix Market file.
# Create
sample_mat <- matrix(c(1, 2, 3, 4), nrow = 2)
temp_file_mat <- tempfile(fileext = ".mtx")
write_fmm(sample_mat, temp_file_mat)
# Read
mat <- fmm_to_mat(temp_file_mat)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.