Running .exe and .dll in Matlab,importing and sketch results
8 ビュー (過去 30 日間)
古いコメントを表示
I have a windows application which is C# based having .exe and dll files(.NET Assembly),which is used to maintain project database,importing and perform automatic tests. i would like to run this application by Matlab and get the folders,results imported to Matlab as parameters in workspace, with these parameters i can draw and show the graphs with differences between defined test cases automatically.
Please suggest how can i approach? valuable materials to refer, and the best process. (I am quite new to handle Matlab)
0 件のコメント
採用された回答
Guillaume
2014 年 11 月 7 日
Note that very often it is much safer to use functional notation rather than dot notation to call .Net methods as matlab translation layer often struggles with dot notation. That is use
objectmethod(object, arg1, arg2, ...)
rather than
object.objectmethod(arg1, arg2, ...)
3 件のコメント
Guillaume
2014 年 11 月 7 日
I'm afraid I don't understand what you mean by import its folders to matlab. Can you give a concrete example?
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で MATLAB Compiler SDK についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!