boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 老掉牙的FORTRAN 编程,在REAL*16中,那个是DBLE的替代函数?
相关主题
c++标准函数传递一问
面试被问到G++和GCC编译器的关系
how to solve too large positive summation go to negative in fortran programming?
请推荐一些Fortran编程的书
弱问:搞数值模拟和计算,linux的优势到底在哪?
问个小问题:MAC下的intel fortran compiler命令是啥
fortran 中数值精度怎么保证的?
32/64bit Fortran编译器造成的错误
FORTRAN新手自学求助 (转载)
Windows 7 下的 fortran compiler
相关话题的讨论汇总
话题: fortran话题: real话题: dble话题: precision话题: compiler
进入Programming版参与讨论
1 (共1页)
b****e
发帖数: 906
1
DBLE似乎只用于转换成REAL*8的格式,用哪个内部函数怎么才能将任意的格式专为标准
的REAL*16呢?
同时,似乎DBLE这个内部函数的编程也颇为不易的,主要是输入的参数的格式是不定的
,那怎么自己去编写这个函数?
O******e
发帖数: 734
2
A FORTRAN 77 compiler must support both single- and double-precision
data, but is not required to support quadruple-precision. If a
FORTRAN 77 compiler supports quad-precision data, the name of the
conversion function is implementation dependent, so you'll have to
check the compiler manual.
In Fortran 90 or later, the compiler is also not required to support
quad-precision data, but if it does support it, the standard way to
convert data is to call the real() function with a kind type parameter

【在 b****e 的大作中提到】
: DBLE似乎只用于转换成REAL*8的格式,用哪个内部函数怎么才能将任意的格式专为标准
: 的REAL*16呢?
: 同时,似乎DBLE这个内部函数的编程也颇为不易的,主要是输入的参数的格式是不定的
: ,那怎么自己去编写这个函数?

1 (共1页)
进入Programming版参与讨论
相关主题
Windows 7 下的 fortran compiler
求intel fortran 9.1 em64t compiler
求教界面编程问题
求推荐一个Fortran 90 compiler/ composer for windows
2014年11月“我最喜爱的编程语言”排行榜
对于编程,有没有替代google的search engine ?
bihai的帖子彻底打消了我学cpp的念头
谈谈编程的目的是什么?
请教:函数后面的 throw() 有意义么?
[合集] 编程的习惯问题
相关话题的讨论汇总
话题: fortran话题: real话题: dble话题: precision话题: compiler