can someone help me with closeloop narx?
조회 수: 5 (최근 30일)
이전 댓글 표시
% Importación de datos%
xlsread p xlsread t
p1 = p 't1 = t'
inputSeries tonndata = (pn, true, false); targetSeries = tonndata (tn, true, false);
% Crea una Red autorregresivo lineal con entrada externa
net = narxnet (inputDelays, feedbackDelays, hiddenLayerSize);
% Preparación de los datos para la formación y Simulación [entradas, inputStates, layerStates, metas] = preparets (neto, inputSeries, {}, targetSeries);
Train% de la red [red, tr] = tren (neto, insumos, objetivos, inputStates, layerStates);
% Prueba de las salidas netas de red = (insumos, inputStates, layerStates); errors = gsubtract (objetivos, resultados);
okey, me levanto aquí
% Closed Loop Red Netc = closeloop (neto); [xc, xic, AIC, tc] = preparets (Netc, inputSeries, {}, targetSeries); yc = Netc (xc, xic, AIC);
Bien, ahora, para reiterar debo introducir (yc) en preparets función para simular de nuevo lazo cerrado? Como era de este comand? [Xc, xic, AIC, tc] = preparets (Netc, yc, {}, {});? porque los objetivos de ahora no tienen. Can someone help me?
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!