I have a matrix, but I am trying not to print the 0 values in the matrix. I wrote the logic but it is not working.
do i=1,42
if (massmat(i,j).ne.0) then
write(20,*)i,(massmat(i,j),j=1,42)
end if
end do
It still prints out all the zeros and all the values. Can someone please help?
You could write
This will loop over the rows of
massmat
and print all the non-0 elements in each. I'll leave you to consult your Fortran documentation for details of thepack
function.