« Return to Thread: load data

Re: load data

by agronomist :: Rate this Message:

Reply to Author | View in Thread

typing
A = load("U:\Octave\datafile.dat");
gives:

warning: unrecognized escape sequence '\O' -- converting to 'O'
error: load: unable to find file U:Octave

It seems like Octave for some reason cant handel our network drive system.



Your command should read
A = load("U:\Octave\datafile.dat");

not

A = load("U:Octave\datafile.dat");

(mind the backslash after the drive letter).

Michael
_______________________________________________
Help-octave mailing list
Help-octave@octave.org
https://www-old.cae.wisc.edu/mailman/listinfo/help-octave


 « Return to Thread: load data