DEXP or EXP for exponential function in fortran?

后端 未结 3 738
小蘑菇
小蘑菇 2021-02-05 14:40

I have two very short questions:

1 - I just read that DEXP() is the archaic form of EXP(). Does it mean that it should not be used an

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-05 14:52

    Question number 1:

    As mentioned before, it is always better to use the generic functions, such as EXP(), in preference to the outdated type specific equivalents, such as DEXP().

    In the old (really old) versions of FORTRAN (before FORTRAN 77), a different function was required for each data type. So if you wanted the exponential function would need: EXP() for single precision numbers, DEXP() for double precision numbers, or CEXP() for complex numbers. FORTAN now has function overloading, so a single function will work for any standard type.

    Question number 2.

    In principle the possible range of the exponent can be processor and compiler dependent. However, as mentioned before, most modern processors and compilers will use the IEEE standard.

    If needed, it is possible to specify the required range of a variable when declaring it. The function to use is SELECTED_REAL_KIND([P,R]).

    For example, suppose you to make sure that x is of a type with decimal precision of at least 10 digits and a decimal exponent range of at least 100.

    INTEGER, PARAMETER :: mytype = SELECTED_REAL_KIND(10, 100)
    REAL(KIND=mytype) :: x
    

    For more information: SELECTED_REAL_KIND

    In practice, if you are writing a program that requires a given accuracy, and which may be run on exotic or old systems, it is a very good idea to define your types in this way. Some common definitions are shown here: Real Precision

提交回复
热议问题