Added runge kutta integration.

This commit is contained in:
jgoppert
2015-11-11 23:31:43 -05:00
parent 2c7a375e3d
commit 42f2e60b24
11 changed files with 112 additions and 12 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ int main()
assert(A_large == A_large_I);
}
SquareMatrix<float, 3> zero_test = zero<float, 3, 3>();
SquareMatrix<float, 3> zero_test = zeros<float, 3, 3>();
inv(zero_test);
return 0;