[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: load data
From: |
Przemek Klosowski |
Subject: |
Re: load data |
Date: |
Wed, 8 Jul 2009 14:40:56 -0400 (EDT) |
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.
No, the problem is that within double-quoted strings \ is interpreted
as part of escape sequences. Actually you should have gotten the same
error when you used load("U:Octave\datafile.dat")---are you sure that
that's what you used before and that there was no error message?
You should double up the backslash: A = load("U:\\Octave\\datafile.dat");
- load data, agronomist, 2009/07/03
- Re: load data, Thomas Weber, 2009/07/03
- Re: load data, Jaroslav Hajek, 2009/07/04
- Re: load data, agronomist, 2009/07/06
- Re: load data, Michael Grossbach, 2009/07/06
- Re: load data, agronomist, 2009/07/07
- RE: load data, HALL, BENJAMIN PW, 2009/07/07
- Re: load data, Michael Grossbach, 2009/07/07
- Re: load data,
Przemek Klosowski <=