MATLAB: Question is how to connect these three nets by serial once and by parallel once.

neural networks

Hi everyone, I have a question?. I have created net1, net2, and net3 and all of these nets have the same inputs and targets with also different training algorithms and hidden-layers, however every nets has different outputs with different MSE, regression, and MAPE, so my question is how to connect these three nets by serial once and by parallel once. Thanks in advance.

Best Answer

Connecting them in series makes no sense.
y = (net1(x)+net2(x)+net3(x))/3
Hope this helps.
Thank you for formally accepting my answer
Greg