DarkArius / aforge

Automatically exported from code.google.com/p/aforge
Other
0 stars 0 forks source link

Aforge network.Compute Method #384

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Hi eveybody,
I am trying to simple recognition system. I am just wondering, what is 
difference between

network.Compute( input ), network.Compute( input )[0], network.Compute( input 
)[1] or network.Compute( input )[number] ?

Thanks in advance.

Original issue reported on code.google.com by osmanvi...@gmail.com on 18 Jun 2014 at 5:37

GoogleCodeExporter commented 8 years ago
This is not a forum, this is issue tracking system.

Have a look at docs to see what Compute() returns:
http://www.aforgenet.com/framework/docs/html/ea1ad50d-b237-1e25-b081-d68409e333f
0.htm

And now lets get to C# basics. Suppose you have array:
double[] test = new double[10];

What is the difference between: test, test[0], test[1] ?

Original comment by andrew.k...@gmail.com on 19 Jun 2014 at 8:49