2012-05-01から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…

Winodws 7 / Apache 2.2 / PHP 5 インストールメモ

ひさびさに Apache と PHP を Windows 7 64bit にインストールしようとして、Apache から PHP のモジュールが読めずに "The requested operation has failed!" が出まくって苦闘したのでメモ。 Apache: http://httpd.apache.org/download.cgi から httpd-2.2…