help-octave
[Top][All Lists]
Advanced

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

Re: parcellfun test issue on Mac OS 10.8, was Re: problems installing op


From: Francis Poulin
Subject: Re: parcellfun test issue on Mac OS 10.8, was Re: problems installing openmpi_ext
Date: Mon, 9 Sep 2013 16:10:38 +0000

Hello,

Seemed to work for me too, see below.

Francis

octave:1> x = pi;
octave:2> name = tmpnam;
octave:3> save ("-binary", name, "x");
octave:4> y = load ("-binary", name, "x");
octave:5> assert (x, y.x)
Reading symbols for shared libraries . done
octave:6> z = load (name, "x");
octave:7> assert (x, z.x)


On 2013-09-09, at 11:23 AM, c. <address@hidden>
 wrote:

> 
> On 9 Sep 2013, at 15:59, Alexander Hansen <address@hidden> wrote:
> 
>> I've got similar, but slightly more verbose output (with -g, -O0, and using 
>> gcc-4.8 to build Octave):
> 
> This confirms the problem occurs in "fload.cc", even if reading from a real 
> file and not from a pipe.
> this is very surprising as "fload" is essentially the same as the built in 
> load command except it uses 
> an already open file stream ...
> 
> Does the following also give you problems?
> 
> x = pi;
> name = tmpnam;
> save ("-binary", name, "x");
> y = load ("-binary", name, "x");
> assert (x, y.x)
> z = load (name, "x");
> assert (x, z.x)
> 
> c.
> 
> 



reply via email to

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