Reads in a matrix from file (no header, no row-names, no NA's, space or tab-delimiter)
and returns the according R-matrix. No Need to specify dimensions.
Usage
cscanx(path)
Arguments
path
character - location of the file to be read ("/path/to/file")
# random matrixX <- matrix(rnorm(10,5),10,5)
# write that matrix to a filewrite.table(X,file="X",col.names=FALSE,row.names=FALSE,quote=FALSE)
# read in the matrix to object ZZ <- cscanx("X")