Octave: importing a large matrix in csv format
- by Massagran
I'm trying to import a matrix (about 80.000 rows) from a csv file to Octave.
The obvious solution seems something like:
load("-ascii","relative_directory/the_file.csv")
or maybe renaming the file and trying:
load("-ascii", "relative_directory/the_file.txt")
Yet I keep getting the error:
load: failed to read matrix from file
"relative_directory/the_file.csv"
or .txt without anymore details. Any tips are appreciated.