Using neural network in function block from Simulink
7 ビュー (過去 30 日間)
古いコメントを表示
My Simulink workspace looks like this:
and the function contains just a few lines:
function y = mysimulinkfunction(u,v)
%#codegen
global net;
y = net([u;v]);
The object "net" is an already trained feed forward network residing in my workspace which can be successfully called from the command line via
net([1;0])
and writes the correct answer (which is 1.0).
However Simulink throws several errors when I try to run it, first:
Global declaration not resolved to a Data Store Memory block registered via the Ports and Data Manager.
and 2nd:
Could not find initial value for global variable 'net'.
Those errors sound like it is not possible to call neural networks that way, however I just want to know if there's another possibility than gensim(net) to use a NN in Simulink.
0 件のコメント
回答 (5 件)
Ryan Livingston
2014 年 5 月 15 日
In the MATLAB Function Block global variables are linked to Data Store Memory blocks rather than the MATLAB workspace:
However, I don't believe that Neural Network objects are directly supported for code generation.
The simplest alternative to gensim I've seen to utilize a trained NN in the MATLAB Function Block or MATLAB Coder is genFunction:
That page describes how to create a MATLAB Function Block/MATLAB Coder compliant MATLAB function via the syntax:
genFunction(___,'MatrixOnly','yes')
This will produce a MATLAB function which you should simply be able to call from inside your MATLAB Function Block to simulate the NN.
Simon Christmann
2018 年 1 月 9 日
編集済み: Simon Christmann
2018 年 1 月 9 日
Here is the full solution for Zeljko Tomicevic and anyone who found this thread on Google
0 件のコメント
XIN HE
2019 年 6 月 5 日
Did you got it fixed? I got the similar proble, could you share your solution ?
0 件のコメント
michael bronnmann
2019 年 8 月 27 日
Hey, is there any way to use "SeriesNetwork" in Simulink?
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Sequence and Numeric Feature Data Workflows についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!