[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Accessing octave-core
From: |
John W. Eaton |
Subject: |
Accessing octave-core |
Date: |
Thu, 13 Aug 2009 00:53:37 -0400 |
On 13-Aug-2009, shruti dogra wrote:
| Dear all,
| I was running a program in octave which took more than 40 hours yet
| it was not over, because of some other reasons I pressed (cntrl + c) to
| break the process. But instead of getting the results so far, I got the
| following message
| "Press Control-C again to abort.
| ^C
| panic: Interrupt -- stopping myself...
| ^C
| attempting to save variables to `octave-core'...
| save to `octave-core' complete "
| Can anybody help telling how to access "octave-core" or any other way
| to regain the data.
The octave-core file contains the variables from the top-level
workspace, saved with the equivalent of Octave's "save" function. You
should be able to load it with "load octave-core".
jwe