Talk:Selling Icecreams: Difference between revisions
From Artificial Neural Network for PHP
mNo edit summary |
mNo edit summary |
||
Line 8: | Line 8: | ||
print $objIcecream->getRealOutputValue($floatOutput[0] ... |
print $objIcecream->getRealOutputValue($floatOutput[0] ... |
||
As $floatOutput is an Array |
As '''$floatOutput''' is an ''Array'' |
Revision as of 19:54, 23 December 2008
... foreach($arrOutputs as $floatOutput) print $objIcecream->getRealOutputValue($floatOutput) ...
Should be
... foreach($arrOutputs as $floatOutput) print $objIcecream->getRealOutputValue($floatOutput[0] ...
As $floatOutput is an Array