How to useParallel in system identification?
显示 更早的评论
Is there a way to use 'useParallel' on the nlarx function in the system identification, like with the train function in the deep learning toolbox? I'm using neuralnet as the nonlinearity. Here's the training section of my script:
%% Training
na = 3;
nb = [3 1 1];
nk = [0 0 0];
net = feedforwardnet(10);
net.trainParam.epochs = 5000;
nonlinearity = neuralnet(net);
sys = nlarx(zt, [na nb nk], nonlinearity);
Any help is greatly appreciated!
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Hammerstein-Wiener Models 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!