[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Load data with script
From: |
John W. Eaton |
Subject: |
Load data with script |
Date: |
Wed, 16 Sep 2009 03:45:30 -0400 |
On 15-Sep-2009, Steffen Titze wrote:
| i have written a script to load some values from a data file. With old
| version of octave (3.0.3) i don´t had anyproblems. But with the new
| version i cann´t load the data file with the script.
|
| if i load the data file with same syntax with out the script, i don´t
| have any problems.
|
| x = load ('C:\Test\090811.txt')
|
| Error massage with script
| error: invalid call to script
|
| How can i solve the problem? I use a windows pc.
Is there a load.m file somewhere in Octave's path? Try
which load
and see what it tells you.
jwe