powered by
This function reads a Matrix Market file and converts it to a numeric vector in R.
fmm_to_vec(filename)
A numeric vector containing the data read from the Matrix Market file.
The name of the input Matrix Market file to be read.
# Create sample_vec <- c(1, 2, 3) temp_file_vec <- tempfile(fileext = ".mtx") write_fmm(sample_vec, temp_file_vec) # Read vec <- fmm_to_vec(temp_file_vec)
Run the code above in your browser using DataLab