help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Loading Data


From: TweedleDee
Subject: Re: Loading Data
Date: Sun, 10 Feb 2008 16:38:33 -0800 (PST)



TweedleDee wrote:
> 
> 
> 
>  
> Thanks for the help, but I tried that method already.  When I use that I
> get the following error message:
> 
> error: load: empty name keyword or no data found in file
> 
> The file I'm trying to load is an array of floating point numbers in text
> format...
> 0.0000
> 7.4533
> 7.6765
> 8.6432
> etc...
> 
> I can load it in Matlab or the Octave command window without any trouble.
> 


Okay, I figured out what my problem was.  I was trying to use the path and
filename together in the load command.  I should have been using the path
command to set the path first.  

path = 'C:\Program Files\Octave\Alan';
load ("TorqueArray.txt")
x = TorqueArray;
plot (x);

Tweed
-- 
View this message in context: 
http://www.nabble.com/Loading-Data-tp15389838p15403690.html
Sent from the Octave - General mailing list archive at Nabble.com.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]