Dear Greg, especially very much thanks to your response and attention, I produced this flowing Matlab code by examining the references that you said some code including OUTER-LOOP and INNER-LOOP,
for h=1:10; net=newff(dipcap,cap,h,{'logsig'}); net=train(net, dipcap,cap); aa=sim(net,dipcap); end;
ın this code, input variable is dipcap and target varaible is cap, this code resulted in ten number training network including from 1 to 10 number of neurons ranges, but I need predicted cap values of these network models including a various number of neurons, from 1 to 10, especially the code "aa=sim(net,dipcap)" resulted in predictions for last network models including 10 number of neuron, but I need cap predictions from ten various network models includinf from 1 to 10 number of neurons, I used a code "aa(h)=sim(net,dipcap)", but I had a error: "In an assignment A(I) = B, the number of elements in B and I must be the same."
can I solve this problem and can I obtain these cap predictions from ten different network model including from 1 to 10 number of neurons,
best regards...
ilker ERCANLI