can someone help me with closeloop narx?

1 回表示 (過去 30 日間)
FRANCISCO
FRANCISCO 2013 年 2 月 1 日
% 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 件)

カテゴリ

Help Center および File ExchangeIntroduction to Installation and Licensing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by