Skip to content

Commit

Permalink
fix ColSums
Browse files Browse the repository at this point in the history
  • Loading branch information
daelsepara committed May 5, 2019
1 parent d45c5a3 commit 4a00d6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DeepLearnMac/ManagedMatrix.cs
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ public static ManagedArray ColSums(ManagedArray A)

for (var i = 0; i < A.y; i++)
{
result[i] += A[j, i];
result[j] += A[j, i];
}
}

Expand Down

0 comments on commit 4a00d6a

Please sign in to comment.