help-octave
[Top][All Lists]
Advanced

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

Re: Oct-files calling in Matlab


From: Carlo de Falco
Subject: Re: Oct-files calling in Matlab
Date: Tue, 11 Dec 2012 16:27:06 +0100

2012/12/11 Reza Housseini <address@hidden>:
> Sorry I'meant to call save inside c++ code

I think the best option is to use feval  to invoke the same command as
Ismael suggested.
something like (untested):

octave_value_list input;
input(0) = octave_value ("-v7");
input(1) = octave_value ("-append");
input(2) = octave_value (your_variable);
feval ("save", input, 0);


c.


reply via email to

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