fm.write.objR Documentation

Write a FlashR object (vector/matrix) to a file

Description

Write a FlashR object (vector/matrix) to a file

Usage

fm.write.obj(fm, file)

Arguments

fm

a FlashR object.

file

a file in the local filesystem.

Value

a logical value. True if the object is written to a file successfully. Otherwise, FALSE.

Author(s)

Da Zheng <dzheng5@jhu.edu>

Examples

mat <- fm.runif.matrix(100, 10)
fm.write.obj(mat, "/tmp/tmp.mat")