2012-05-19から1日間の記事一覧

Minimal sample for reading a fortran unformatted data from Mathematica

Reference : Google search: fortran unformatted file structurea sample fortran source code INTEGER,PARAMETER::NDAT=256; REAL(8),DIMENSION(0:NDAT-1)::dat=1D0 OPEN(1,FILE='dirname/filename',FORM='UNFORMATTED') WRITE(1)NDAT WRITE(1)dat CLOSE(1…