How to call a SimBiology function from Java
古いコメントを表示
Hi All,
I'm using MATLAB SimBiology to run a cancer cell signalling network simulation, and want to pass the results of the simulation to Java for more interesting visualisations. The network is defined in an SBML file, so in my MATLAB code I have the following:
function sivit = sivitLoadSBMLModel( fname )
sivit.m = sbmlimport(fname);
% ... and then about 50 more lines of doing stuff to sivit.m
This works OK in MATLAB, but when I build sivitLoadSBMLModel into a Java class and call it from Java, I get the following error:
Undefined function or method 'sbmlimport' for input arguments of type 'char'.
So - how do I connect between SimBiology and Builder JA?
Thanks a lot - Mark
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Import Data についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!