help-octave
[Top][All Lists]
Advanced

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

Re: c++ octave interface, octfile


From: Georg Holzmann
Subject: Re: c++ octave interface, octfile
Date: Tue, 09 Oct 2007 10:03:11 +0200
User-agent: Thunderbird 2.0.0.0 (X11/20070326)

Hallo!

Thanks - I did now find all the examples and explanation I need.

Also, look at the CODA manual through the Octave wiki.

One note to the CODA manual: there are some mistakes in the code at http://wiki.octave.org/wiki.pl?CodaTypes and I was not allowed to change it:

1.
DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (Box, "Box");
should be
DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (Box, "Box", "Box");

2. in copy constr.:
const octave_value& rep = box_val.get_rep();
should be
const octave_base_value& rep = box_val.get_rep();

3. again in DEFUN_DLD(BoxTest,args,,"BoxTest(Boxobject)\ at the bottom:
const octave_value& rep = box_val.get_rep();
should be
const octave_base_value& rep = box_val.get_rep();


Could someone with permission change this ?

Thanks,
LG
Georg


reply via email to

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