0

Hi I trained my network into Matlab neural network toolbox I save it.. I can used into matlab environment by calling sim(net,p) but How can I export it to anther .net apps ?

1 Answers1

0

You might be better off exporting just the weights (etc.) element of the network and using them in a library designed for .NET like AForge.NET, rather than deal with all of the interop.

jonsca
  • 10,218
  • 26
  • 54
  • 62
  • @user769027 For the actual interop, see the following questions: http://stackoverflow.com/questions/434331/interoperating-between-matlab-and-c, and http://stackoverflow.com/questions/5226631/c-matlab-interoperability-for-non-matrix-datatypes, but I still think once you've trained the network, you can transfer the weight matrices either into a C#-based neural network, or used directly. – jonsca May 26 '11 at 23:05