complexf.cwp.lib
来自「su 的源代码库」· LIB 代码 · 共 29 行
LIB
29 行
COMPLEXF - Subroutines to perform operations on complex numbers. This set of functions complement the one in complex.c of the CWP librarycipow raise a complex number to an integer powercrpow raise a complex number to a real powerrcpow raise a real number to a complex powerccpow raise a complex number to a complex powerccos compute the complex cosine of a complex anglecsin compute the complex sine of a complex angleccosh compute the complex hyperbolic cosine of a complex anglecsinh compute the complex hyperbolic sine of a complex anglecexp1 compute the complex exponential of a complex numberclog compute the complex logarithm of a complex numberFunction Prototypes:complex cipow(complex a, int p);complex crpow(complex a, float p);complex rcpow(float a, complex p);complex ccpow (complex a, complex p)complex ccos(complex a);complex csin(complex a);complex ccosh(complex a);complex csinh(complex a);complex cexp1(complex a);complex clog(complex a);Credits: Dave Hale, original version in C++ Gabriel Alvarez, translation to C
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?