由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - FORTRAN 90 菜鸟问题
相关主题
请教Fortran编程高手并问一下OpenMP的问题问个简单的Fortran问题
如何在fortran中定义一个动态的数组?QuickBasic grammer question
问个fortran的问题a simple question about constructor
怎样解决fortran程序中的common块的问题怎么把string变为一个variable的名字 ?
一个fortran问题:另一个Fortran 问题
fortran里面common的问题Default function template arguments
MPI xl fortran problem on Blue Geneajax小问题
32/64bit Fortran编译器造成的错误question about using Hive parameter (转载)
相关话题的讨论汇总
话题: eb话题: parameter话题: fortran话题: kind话题: defined
进入Programming版参与讨论
1 (共1页)
h*****d
发帖数: 788
1
a = 2._EB/3._EB
这个 _EB 什么意思?
谢谢
h*******s
发帖数: 11
2
EB is the kind type parameter.
If EB is not defined in that program unit (program, module, subroutine, or
function), it will be defined in one of the modules that you "use" in
that program unit.
Given either of these definitions:
integer,parameter::eb=selected_real_kind(6,37)
integer,parameter::eb=kind(0.0e0)
then
real(eb)::a
a=2.0_eb/3.0_eb
gives the single-precision result of dividing 2.0 by 3.0.
If instead eb is defined as either of the following:
integer,parameter::eb=selected_real_kind(15,3

【在 h*****d 的大作中提到】
: a = 2._EB/3._EB
: 这个 _EB 什么意思?
: 谢谢

h*****d
发帖数: 788
3
Thank you! Fortran getting more more complicated...

【在 h*******s 的大作中提到】
: EB is the kind type parameter.
: If EB is not defined in that program unit (program, module, subroutine, or
: function), it will be defined in one of the modules that you "use" in
: that program unit.
: Given either of these definitions:
: integer,parameter::eb=selected_real_kind(6,37)
: integer,parameter::eb=kind(0.0e0)
: then
: real(eb)::a
: a=2.0_eb/3.0_eb

1 (共1页)
进入Programming版参与讨论
相关主题
question about using Hive parameter (转载)一个fortran问题:
Can we define pure virtual function? (转载)fortran里面common的问题
How are parameters passed between ANSI C subroutines?MPI xl fortran problem on Blue Gene
请看看这个Perl random sampling code 有什么问题,32/64bit Fortran编译器造成的错误
请教Fortran编程高手并问一下OpenMP的问题问个简单的Fortran问题
如何在fortran中定义一个动态的数组?QuickBasic grammer question
问个fortran的问题a simple question about constructor
怎样解决fortran程序中的common块的问题怎么把string变为一个variable的名字 ?
相关话题的讨论汇总
话题: eb话题: parameter话题: fortran话题: kind话题: defined