User:Elgreengeeto/Python Perceptron: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

14 March 2009

13 March 2009

  • curprev 09:5609:56, 13 March 2009Elgreengeeto talk contribs 2,607 bytes +2,607 New page: <pre> #a dot product is the sum of the products of aligned-elements from two #same-lengthed arrays def dot_product(a, b): sum = 0 i = 0 while i < len(a): sum += a[i] * b[i]...