aboutsummaryrefslogtreecommitdiff
path: root/src/bettermath2.F90
diff options
context:
space:
mode:
Diffstat (limited to 'src/bettermath2.F90')
-rw-r--r--src/bettermath2.F906
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bettermath2.F90 b/src/bettermath2.F90
index 0baa473..d1eaa37 100644
--- a/src/bettermath2.F90
+++ b/src/bettermath2.F90
@@ -49,7 +49,7 @@ CONTAINS
DO j = 1, size(B, 2)
DO k = 1, size(A, 2)
- C(:,j) = C(:,j) + A(:,j) * B(k,j)
+ C(:,j) = C(:,j) + A(:,k) * B(k,j)
END DO
END DO
@@ -66,7 +66,7 @@ CONTAINS
DO j = 1, size(B, 2)
DO k = 1, size(A, 2)
- C(:,j) = C(:,j) + A(:,j) * B(k,j)
+ C(:,j) = C(:,j) + A(:,k) * B(k,j)
END DO
END DO
@@ -83,7 +83,7 @@ CONTAINS
DO j = 1, size(B, 2)
DO k = 1, size(A, 2)
- C(:,j) = C(:,j) + A(:,j) * B(k,j)
+ C(:,j) = C(:,j) + A(:,k) * B(k,j)
END DO
END DO