How to call a SimBiology function from Java
Show older comments
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
Accepted Answer
More Answers (0)
Categories
Find more on Import Data in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!