0

Hy everybody,

I'm trying to implement a neural network with matlab using nntool.

Does anyone know what the following error message means?

**??? Insufficient number of outputs from right hand side of equal sign to satisfy assignment. Error in ==> nntool at 694 [errmsg,errid] = me.message;

com.mathworks.jmi.MatlabException: Insufficient number of outputs from right hand side of equal sign to satisfy assignment.**

Any help would be apreciated.

Oldskool
  • 34,211
  • 7
  • 53
  • 66
Ricardo Graça
  • 581
  • 2
  • 9
  • 17

2 Answers2

0

Can it be that you defined your neural network with let's say N outputs, but your training data somehow has more than or less than N outputs?

David M
  • 71,481
  • 13
  • 158
  • 186
jkt
  • 2,538
  • 3
  • 26
  • 28
0

Just take the transpose of your input. If its an m*n matrix, make it an n*m matrix.

David M
  • 71,481
  • 13
  • 158
  • 186