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!