search for: matff

Displaying 1 result from an estimated 1 matches for "matff".

2009 Nov 25
3
questions on the ff package
Hi, I have two questions on using the ff package and wonder if anyone who used ff can share some thoughts. I need to save a matrix as a memory-mapped file and load it back later. To save the matrix, I use mat = matrix(1:20, 4, 5) matFF = ff(mat, dim=dim(mat), filename="~/a.mat", overwrite=TRUE, dimnames = dimnames(mat)) To load it back, I use matFF2 = ff(vmode = "double", dim= ???, filename="~/a.mat", overwrite=F) However, I don't always know the dimension when loading the matrix back. If I mis...