Can I import a Pre trained neural network into NN predictive control toolbox?

I have a neural network pre trained..the code is as follows a= [****]; b= [****]; dataset= [a ; b ];
size(a) size(b) rand('seed', 491452) net = fitnet(150); net.trainParam.goal=1e-6; [net,tr] = train(net,a,b); nntraintool plotperform(tr) testA = a(:,tr.testInd); testB = b(:,tr.testInd); testC = net(testA); perf = mse(net,testB,testC); view(net) gensim(net) y=[****]; y = net(test); y;
It works great.. now Can I import it in to NN predictive control toolbox in simulink??

Antworten (1)

Shashank Prasanna
Shashank Prasanna am 25 Jun. 2013
You can generate a simulink block using the following function:
Here is an example that shows how to go about doing that:

2 Kommentare

if u see the code.. i did that.. the problem is i have 5 inputs..
I can't run your code. Can you explain what is the issue you are facing with the inputs?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Sequence and Numeric Feature Data Workflows finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 25 Jun. 2013

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by