var fDesc=new Array(); fDesc[0] = "SBMLToolbox is built on top of libSBML and provides a set of basic functions allowing SBML models to be used in MATLAB. SBMLToolbox provides functions for reading, writing, and validating SBML models; viewing model structures in a simple GUI; converting models into a symbolic form suitable for use with MATLAB's Symbolic Math Toolbox; and simulate models using MATLAB's ordinary differential equation solvers.

SBMLToolbox works by translating SBML models to/from a MATLAB structure called MATLAB_SBML. It provides facilities for manipulating this and its substructures within MATLAB, as well as functions for saving and loading MATLAB_SBML structures to/from MATLAB data files."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }