Electronic – MATLAB toolbox equivalent for embedded system

cMATLAB

We have to develop control software to run in an embedded system. The prototype is made in Matlab (using neural network toolbox), and we want to port the software to C or C++. Do you know which libraries or software we could use to do this? Embedded matlab may be another option, but, from their info in the website, it seems that neural network toolbox is not supported. Any of you has worked with it before?

Best Answer

First dump it to C/C++, instructions here and profile the application on your computer. neural networks can be rather compute intensive so you need to know how much processing power and what type of processing you need (integer? FP? fixed point? SIMD? etc?).

If you need the network to be trainable while running on your embedded device, then you're stuck developing your own system as MatLab exported code doesn't including the training portions, perhaps based on some external neural network libraries. I would still start with profiling what you've got to get an idea of what class of device your looking at.

All that being said, the beagleboard is probably a safe bet unless what your doing is very compute intensive, it would also allow you to use most linux libraries. I used the FANN library for a project maybe 5 years ago and it was good to work with. I don't know if it will compile for ARM out of the box or if some other library has trumped it recently.

Related Topic