MATLAB: How can i enter more than one input in NARX model

narx with multiple input

Hi!
I want to train a NARX model, which have 1 target time series data and 3 input time series data. I tried to use the nnstool, but there I could use only 1 input data. How could I train my network with more than 1 input?
thanks, Roley

Best Answer

Hi Roland:
You have to arrange your 3 input series data into 1.
Please check the example "pH Neutralization Process" that comes with the system.
Run these commands and check afterwards the variable "inputSeries". This one contains two series as input.
load pH_dataset
inputSeries = phInputs;
targetSeries = phTargets;
More info here:
Best regards. Fran.