ExportArray.f90 Source File


Source Code

integer :: fh, i

if (present(OptionalFileHandle)) then
   fh = OptionalFileHandle
else
   fh = 10
end if

do i = 1, size(Mat, 1)
   write (fh, *) Mat(i, :)
end do