📄 cot.f
字号:
Function cot( x ) Result( cotx )! ---------------------------------------------------------------------- Use numerics Implicit None Real(l_) :: x Real(l_) :: cotx! ----------------------------------------------------------------------! --- cotx = Cotan(x) ! In case function exists on system. cotx = 1.0_l_/Tan( x )! ---------------------------------------------------------------------- End Function cot
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -