metaopt Code (matlab binding)
Optimization toolbox for analyzing metabolic networks
Brought to you by:
arne_m
| File | Date | Author | Commit |
|---|---|---|---|
| matlab | 2012-10-25 |
|
[6b97f4] ideas on modules articles |
| src | 2012-11-28 |
|
[56dfb0] improved precision and uncomplete compiler fixe... |
| .gitignore | 2012-10-12 |
|
[90d119] bug fixes code for running through all biomodel... |
| Makefile | 2012-12-10 |
|
[10daa8] worked on modules paper |
| README | 2012-08-10 |
|
[eae814] calling metaopt from matlab works now :D |
README ====== There are basically two ways to couple C++ code to matlab 1. Build a mex file and do a direct library call * fast, no dirty tricks * but: all the libraries that are used must have the same version as matlab ** this gets really problematic for projects that use many libs 2. build a stand alone app and simply execute that application * data transfer has to be done by writing files ** slow * a new process is started ** no library dependencies Here, I chose 2, because the library problems of 1 are just too incomprehensible.