| T O P I C R E V I E W |
| SvenFriedemann |
Posted - 02/04/2008 : 06:00:54 AM Origin Version (Select Help-->About Origin): 7.5 SR6 Matlab Version: 7.5.0.342(R2007b) Operating System: WinXP
Although the Matlab Console works I could not call Matlab from OriginC. Using the example given in externApps.h gives "No Matlab found".
#include <externApps.h> // this file is not included in origin.h ////////////////////////////////////////////////////////////////// void mltest() { Matlab matObj; if(!matObj) { out_str("No Matlab found"); return; } } Regards, Sven |
| 3 L A T E S T R E P L I E S (Newest First) |
| SvenFriedemann |
Posted - 02/20/2008 : 04:57:47 AM Unfortunately, I'm now faced with the problem of transferring matrices from Origin to matlab as already discussed http://www.originlab.com/forum/topic.asp?TOPIC_ID=4154.
Regards,
Sven
Edited by - SvenFriedemann on 02/20/2008 05:01:37 AM |
| SvenFriedemann |
Posted - 02/20/2008 : 04:03:00 AM Hi ML,
now it works, thanks a lot.
Sven |
| ML |
Posted - 02/06/2008 : 11:11:32 AM Hi Sven,
Try to replace the line
Matlab matObj;
with the line
Matlab matObj(TRUE);
ML
|