[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Toolboxes
From: |
Laurent Hoeltgen |
Subject: |
Re: Toolboxes |
Date: |
Sun, 24 Mar 2013 13:17:37 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130308 Thunderbird/17.0.4 |
On 24/03/13 11:43, goosst wrote:
Or maybe I can rephrase the problem:
is it possible to give a ommand in matlab to let a script run in octave and
pass the output back to matlab ?
--
View this message in context:
http://octave.1599824.n4.nabble.com/Toolboxes-tp4631692p4651159.html
Sent from the Octave - General mailing list archive at Nabble.com.
_______________________________________________
Help-octave mailing list
address@hidden
https://mailman.cae.wisc.edu/listinfo/help-octave
Hi,
you could use the "system" command in matlab to call octave, e.g.
something like
[status result] = system('octave FILE');
but I consider this an extremely ugly solution...
Regards,
Laurent