help-octave
[Top][All Lists]
Advanced

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

Re: Oct-file magic


From: dbateman
Subject: Re: Oct-file magic
Date: Thu, 3 Jul 2008 00:36:28 -0700 (PDT)



Michael P Friedlander wrote:
> 
> from within Octave, does this oct-file work in-place, or does it  
> modify a copy of x? 
> 

It makes a copy when you call fortran_vec. Something ugly tht might work is

const double *px1 = x.fortran_vec ();
double *px2 = const_cast<double *>px1;

though do you really want to do that?

D.
-- 
View this message in context: 
http://www.nabble.com/Oct-file-magic-tp18250811p18253440.html
Sent from the Octave - General mailing list archive at Nabble.com.



reply via email to

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