I need to print DFGRD1, a matrix, in a file. I have written these lines
open(105,file='C:\temp17\FM.mtx')
WRITE(105,*) DFGRD1
close(105)
c To check in .dat file
DO i=1,3
WRITE (7,*) (DFGRD1(i,j),j=1,3)
END DO
However, the answers are not the same. They are the transpose of each other. Since I cannot access the real value of DFGRD1, I do not know which one is correct. I would really appreciate if someone could help me with it.