Clicky
Showing changes from revision #2 to #3:
(追記) Added (追記ここまで) | (削除) Removed (削除ここまで) | (削除) Chan (削除ここまで)(追記) ged (追記ここまで)
sinh(x)
computes the hyperbolic sine of x
.
Fortran 95 and(削除) later (削除ここまで)(追記) later, (追記ここまで)(追記) for (追記ここまで)(追記) a (追記ここまで)(追記) complex (追記ここまで)(追記) argument (追記ここまで)(追記) Fortran 2008 (追記ここまで)(追記) or later (追記ここまで)
Elemental function
result = sinh(x)
result = sinh(x)
(追記ここまで)
x
- The type shall be real
(追記) or (追記ここまで)(追記) complex
(追記ここまで). The return value(削除) is (削除ここまで)(追記) has (追記ここまで)(削除) of (削除ここまで)(追記) same (追記ここまで) type(追記) and (追記ここまで)(追記) kind (追記ここまで)(追記) as (追記ここまで)
.(削除) real (削除ここまで)(追記) x (追記ここまで)
program test_sinh
real(8) :: x = - 1.0_8
x = sinh(x)
end program test_sinh