PotsyYZhou 发表于 2022-10-28 16:47:57

运算中出现不解提示,求助01

运算中出现不解提示,求助01
***********************
function r8_log_10 ( x )

!c*********************************************************************72
!c
!cc R8_LOG_10 returns the logarithm base 10 of an R8.
!c
!cDiscussion:
!c
!c    value = Log10 ( |X| )
!c
!cParameters:
!c
!c    Input, double precision X, the number whose base 2 logarithm is desired.
!c    X should not be 0.
!c
!c    Output, double precision R8_LOG_10, the logarithm base 10 of the absolute
!c    value of X.It should be true that |X| = 10**R_LOG_10.
!c
      implicit none

      double precision r8_huge
      double precision r8_log_10
      double precision x

      if ( x .eq. 0.0D+00 ) then
#7492 |   r8_log_10 = - r8_huge ( x )
      else
      r8_log_10 = log10 ( abs ( x ) )
      end if

      return
      end********************************
main.f90:7492:29: 7492 |         r8_log_10 = - r8_huge ( x )      |                           1Warning: More actual than formal arguments in procedure call at (1)/usr/bin/ld: /tmp/cc2NnkaB.o: in function `test07_':main.f90:(.text+0x1b015): undefined reference to `r8_uniform_'/usr/bin/ld: main.f90:(.text+0x1b04f): undefined reference to `r8_uniform_'/usr/bin/ld: /tmp/cc2NnkaB.o: in function `test03_':main.f90:(.text+0x1cddc): undefined reference to `r8_uniform_'/usr/bin/ld: /tmp/cc2NnkaB.o: in function `test02_':main.f90:(.text+0x1d745): undefined reference to `r8_uniform_'/usr/bin/ld: main.f90:(.text+0x1d765): undefined reference to `r8_uniform_'/usr/bin/ld: /tmp/cc2NnkaB.o:main.f90:(.text+0x1dcbc): more undefined references to `r8_uniform_' followcollect2: error: ld returned 1 exit status
#7492????
   不解。及下面内容的意思,求助!:-lol
谢谢!

胡文刚 发表于 2022-10-28 17:22:48

你给出的部分代码无法判断这种"缺少函数"的问题。

风平老涡 发表于 2022-10-28 23:17:03

本帖最后由 风平老涡 于 2022-10-28 23:19 编辑

定义了r8_huge变量, 没有定义r8_huge(x) 函数。

PotsyYZhou 发表于 2022-11-2 14:03:05

收到, 谢谢! :-lol
页: [1]
查看完整版本: 运算中出现不解提示,求助01