- #1
Milentije
- 48
- 0
I have a problem with something that should be very simple,I do not no if it is programming issue or my ignorance.
If I have matrix c(5,5)
3 0 0 0 0
1 2 0 0 0
0 1 2 0 0
0 0 1 4 1
0 0 0 1 2
and vector b(1,2,3,4,5)
c*b=a
a=(3,5,8,24,14)
FORTRAN MATMUL
C=MATMUL(B,A)
Correct?
If I have matrix c(5,5)
3 0 0 0 0
1 2 0 0 0
0 1 2 0 0
0 0 1 4 1
0 0 0 1 2
and vector b(1,2,3,4,5)
c*b=a
a=(3,5,8,24,14)
FORTRAN MATMUL
C=MATMUL(B,A)
Correct?