i am focusing on program of backpropagation.
i have trouble on writing a program that if,
i have 7(more than 1) inputs and 4 outputs.
what should i write?
is it same as the 1 input to 1 output program?
i have tried one..but not successful..
for example in the loading data;
X1 = [0,1,2,3,4,5]; %input X2 = [0,1,2,3,4,5]; %input X3 = X4 = X5 = X6 =
Y1 = [3,6,9,12,15]; Y2 = Y3 = Y4 =
train_inp = [X1',X2']; %setting input train_out = [Y']; %seting Out put
% check same number of patterns in each if size(train_inp,1) ~= size(train_out,1) disp('ERROR: data mismatch') return end
or, in the other parts, is it any exceptional 'additional'?