fm.write.obj | R Documentation |
Write a FlashR object (vector/matrix) to a file
fm.write.obj(fm, file)
fm |
a FlashR object. |
file |
a file in the local filesystem. |
a logical value. True if the object is written to a file successfully. Otherwise, FALSE.
Da Zheng <dzheng5@jhu.edu>
mat <- fm.runif.matrix(100, 10) fm.write.obj(mat, "/tmp/tmp.mat")