I am exploring matlab's neural network toolbox (nntool) and i am running into a problem of having incompatible dimensions of target matrix. Exact error message is
com.mathworks.jmi.MatlabException: Insufficient number of outputs from right hand side of equal sign to satisfy assignment.
Let me explain in detail, I have an image which has some elliptical image in it and i want to estimate the eliiptical parameters using a neural network, for that purpose, i have training data with all the target values. So, i am giving image as an input (i first read image, convert it into mat2gray() format, and then import it in nntool), then i set the target matrix (my target matrix contains two values, since my neural network will be outputing two values, i have tried formatting the output in both ways, [0.5 0.9] and also [0.5; 0.9], but still i am getting the same error. Any directions would be highly appreciable.
I have also tried by keeping the number of columns same for input and target matrix. I made my input matrix as [2304,1] (I have a 48*48 image, that is equal to 2304) and my target matrix is [2,1] dimensions, but again, same error occurs. While search, it was written that this is some sort of insufficient memory error, i am not sure if that is correct or not, Can some one please verify this also????
Now comes my second question which is quite general. For this neural network, i have to train 40,000 images. Each image is 48*48 dimensions. How can i input this much images into nntool???? Any idea???
Thanks Nadeem