How to call a SimBiology function from Java
Ältere Kommentare anzeigen
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
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Extend Modeling Environment finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!