Fortran中常用函式列表

2022-09-08 14:09:10 字數 1874 閱讀 4876

y=int(x)    轉換為整數    all(所有型態)    integer  

y=real(x) 轉換為實數 integer real

y=dreal(x) 取複數實部(倍精度) complex*16 real*8

y=dimag(x) 取複數虛部(倍精度) complex*16 real*8

y=conjg(x) 共軛複數 complex complex

y=dconjg(x) 共軛倍精度複數 complex*16 complex*16

y=dble(x) 轉換為倍精度實數 all real*8

y=cmplx(x1,x2) 轉換為複數 all,all complex

y=dcmplx(x1,x2) 轉換為倍精度複數 all,all complex*16

y=iabs(x) 整數絕對值 integer integer

y=dabs(x) 倍精度實數絕對值 real*8 real*8

y=cdabs(x) 倍精度複數絕對值 complex*16 real*8

y=mod(x1,x2) 整數x1/x2之餘數 integer,integer integer

y=dmod(x1,x2) 倍精度實數x1/x2之餘數 real*8,real*8 real*8

y=isign(x1,x2) 取x1之值與x2之正負號 integer,integer integer

y=sign(x1,x2) 取x1之值與x2之正負號 real,real real

y=dsign(x,y) 取x1之值與x2之正負號 real*8,real*8 real*8

y=dsqrt(x) x的倍精度平方根 real*8 real*8

y=cdsqrt(x) x的倍精度複數平方根 complex*16 complex*16

y=dexp(x) x的倍精度指數 real*8 real*8

y=cdexp(x) x的倍精度複數指數 complex*16 complex*16

y=dlog(x) x的倍精度自然對數 real*8 real*8

y=cdlog(x) x的倍精度複數自然對數 complex*16 complex*167

y=dlog10(x) x的倍精度常用對數 real*8 real*8

y=dsin(x) x的倍精度正弦函式 real*8 real*8

y=dcos(x) x的倍精度余弦函式 real*8 real*8

y=dtan(x) x的倍精度正切函式 real*8 real*8

y=dasin(x) x的倍精度正弦反函式 real*8 real*8

y=dacos(x) x的倍精度余弦反函式 real*8 real*8

y=datan(x) x的倍精度正切反函式 real*8 real*8

y=dsinh(x) x的倍精度雙曲正弦函式 real*8 real*8

y=dcosh(x) x的倍精度雙曲余弦函式 real*8 real*8

y=dtanh(x) x的倍精度雙曲正切函式 real*8 real*8

Mysql常用函式列表

字串類 charset str 返回字串字符集 concat string2 連線字串 instr string substring 返回substring首次在string中出現的位置,不存在返回0 lcase string2 轉換成小寫 left string2 length 從string2中...

oracle常用函式列表

一.日期函式 1.add months date,num 2 months between date1,date2 返回可能是整數,也可能是小數 3 last day date 返回日期當天的最後一天 4 round date,fmt 返回日期值,四捨五入到指定的單位 eg.select round...

Mysql常用函式列表

字串類 charset str 返回字串字符集 concat string2 連線字串 instr string substring 返回substring首次在string中出現的位置,不存在返回0 lcase string2 轉換成小寫 left string2 length 從string2中...