help-octave
[Top][All Lists]
Advanced

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

Re: Building Standalone Executables


From: David Grundberg
Subject: Re: Building Standalone Executables
Date: Tue, 16 Feb 2010 08:28:45 +0100
User-agent: Thunderbird 2.0.0.23 (X11/20090812)

Tim Felty wrote:
David, thanks for the help.
I've been working on the code and I'm running into an error on my computer.
It says
"error: No space left on device terminate called after throwing an instance of 'octave_execution_exception' This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information."
This seems to be caused by my calling of do_octave_atexit() My workstation has plenty of harddrive space. And I'm running on Windows. Attached are the current source code, and three source files. Any ideas on what might be happening or how to better isolate the problem? Thanks,
TJ

You know that you can do all this in m-code directly, right? You can even have it work as a stand-alone application. Why go through the trouble to write C++?

#!/usr/bin/octave -qf
args = argv ();
for file=dir ("*.saeC")
 read_data = dlmread (file.name, "", 7, 0);
 Mdot = read_data(:, 3);
 PR = read_data(:, 4);
 Eff = read_data(:, 5);
 griddata (Mdot, PR, Eff, 0.5, 3);
endfor
printf ("Waiting for keypress");
pause
printf ("\n");


David


reply via email to

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