Learn R Programming

fastMatMR (version 1.2.5)

fmm_to_vec: Convert Matrix Market File to Numeric Vector

Description

This function reads a Matrix Market file and converts it to a numeric vector in R.

Usage

fmm_to_vec(filename)

Value

A numeric vector containing the data read from the Matrix Market file.

Arguments

filename

The name of the input Matrix Market file to be read.

Examples

Run this code
# 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