I used neural netowrk MLP type to pridect solar irradiance, in my code i used fitnet() commands (feed forward)to creat a neural network.But some people use a newff() commands (feed forward back propagation) to creat their neural network. please what's difference between two types?? : net=fitnet(Nubmer of nodes in haidden layer); --> it's a feed forward ?? true?? net=newff(Nubmer of nodes in haidden layer); ---> it's a feed forward back propagation ?? Help me please wchich one can i choose for my case (prediction problem)???!!! Who appripriate??
Prashant Kumar answered .
2025-11-20
a. FITNET for regression and curve-fitting which calls the generic FEEDFORWARDNET b. PATTERNNET for classification and pattern-recognition which calls the generic FEEDFORWARDNET c. FEEDFORWARDNET
5. OBSOLETE examples of feedforward nets are
a. NEWFIT for regression and curve-fitting which calls the generic NEWFF b. NEWPR for classification and pattern-recognition which calls the generic NEWFF c. NEWFF
a. TIMEDELAYNET: Feedforward net with output that only depends on current and past inputs b. NARNET: Feedback net with output that only depends on past outputs c. NARXNET: Feedback net with output that depends on BOTH past outputs as well as current and past inputs