Hi to all,
i am designing feedforward backpropagation network throgh matlab. I am new to matlab.if i have the input ,output samples like this
p=[2 3 ];
t=[0.1 0.2 0.3 0.4 ;
0.6 0.7 0.8 0.9 ];
then matlab dont take these samples.becoz the input columns and output columns must be same. matlab gives error as ??? Error using ==> network.train at 228
Targets are incorrectly sized for network.
Matrix must have 4 rows.
if i put values repeatedly just like
p =[2 2 3 3];
t=[0.1 0.2 0.3 0.4 ;
0.1 0.2 0.3 0.4 ;
0.6 0.7 0.8 0.9 ;
0.6 0.7 0.8 0.9];
to make the no.of input columns equal to the output columns.
or i add zeroes in the input and ouput matrix just like