THIS IS YOUR BRAIN ON DRUGS

This commit is contained in:
Ryan Curtin
2010-06-23 23:50:43 +00:00
parent fe5e17f822
commit 80513dfd59
+1 -1
View File
@@ -75,7 +75,7 @@ namespace la {
double result = 0;
for(int i = 0; i < x.n_elem; i++)
result += (x[0] - y[0]) * (x[0] - y[0]);
result += (x[i] - y[i]) * (x[i] - y[i]);
return result;
}
/**