Talk:Selling Icecreams

From Artificial Neural Network for PHP
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
... foreach($arrOutputs as $floatOutput)
      print $objIcecream->getRealOutputValue($floatOutput) ...

Should be


... foreach($arrOutputs as $floatOutput)
      print $objIcecream->getRealOutputValue($floatOutput[0] ...

As $floatOutput is an Array

Handling output values

Yes, that example code was wrong. I changed the lines to the correct code. Thanks a lot for your comment.