MATLAB: How can use static feedforward neural network to predict futre observation

neural networksstatic feedforward neural network

As newff the appropriate choice or we must use others functions like feedforwardnet???

Best Answer

The generic NEWFF and special cases that call it (e.g., NEWFIT(regression/curvefitting) and NEWPR(Classification/pattern-recognition) ) are obsolete.
Use the current special cases FITNET(regression/curvefitting) and PATTERNNET(Classification/pattern-recognition,...) that call the generic FEEDFORWARDNET.
In your case it looks like FITNET.
However, why don't you want to use a dynamic net?
Hope this helps.
Thank you for formally accepting my answer
Greg