I am trying to import a matrix (about 80,000 rows) from a csv file in Octave. The obvious solution is something like this:
load("-ascii","relative_directory/the_file.csv")
or maybe rename the file and try:
load("-ascii", "relative_directory/the_file.txt")
However, I keep getting the error:
load: could not read the matrix from the file "Relative_directory / the_file.csv"
or .txt without details. Any advice is appreciated.
source share