I am trying to import .data data.
dataset = "H:/abb.dat";
dtamat = loadd(dataset);
After running those lines, I am getting the error as:
G0014 : File not found 'H:\abb.dht' [datafile.src, line 258]
1 Answer
0
The loadd
command assumes that files that end in .dat
are GAUSS datasets. If the file is not a GAUSS dataset, this could be the problem. If the file is text data, you can use csvReadM to read the data.
Your Answer
1 Answer
0
The loadd
command assumes that files that end in .dat
are GAUSS datasets. If the file is not a GAUSS dataset, this could be the problem. If the file is text data, you can use csvReadM to read the data.