source: CIVL/examples/fortran/nek/mxm/naive_mxm.f

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 263 bytes
Line 
1 SUBROUTINE MXM(A,N1,B,N2,C,N3)
2 REAL A(N1,N2), B(N2,N3), C(N1,N3)
3
4 DO J=1,N3
5 DO I=1,N1
6 C(I,J) = 0.0
7 DO K=1, N2
8 C(I,J) = C(I,J) + A(I,K)*B(K,J)
9 ENDDO
10 ENDDO
11 ENDDO
12 END
Note: See TracBrowser for help on using the repository browser.