Call two Matlab functions simultaneously from .net

Posted by Silv3rSurf on Stack Overflow See other posts from Stack Overflow or by Silv3rSurf
Published on 2010-04-11T20:50:12Z Indexed on 2010/04/11 20:53 UTC
Read the original article Hit count: 194

Filed under:
|
|
|

I am writing a C# application and I would like to make calls to different matlab functions simultaneously(from different threads). Each Matlab function is located in its own compiled .net library. It seems that I am only able to call one Matlab function at a time however.

ie, if matlab_func1() gets called from thread1 then matlab_func2() gets called from thread2, matlab_func2() must wait for matlab_func1() to finish executing.

Is there a way to call different matlab functions simultaneously? Thanks.

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET