- 积分
- 6165
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-9-22
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
When using gfortan to write a file, please set the format to "unformatted" and access to "stream" , because gfortran cannot use "binary" , and this is a formal format to write a biary data.
for example: open(18,file="his_CDD.dat",form="unformatted",access="stream",status="replace")
In ifort, you can still use open(18,file="his_CDD.dat",form="binary",,status="replace") , but the abovementioned example is strongly recommended.
|
|