📄 slu_dcomplex.h
字号:
/* * -- SuperLU routine (version 2.0) -- * Univ. of California Berkeley, Xerox Palo Alto Research Center, * and Lawrence Berkeley National Lab. * November 15, 1997 * */#ifndef __SUPERLU_DCOMPLEX /* allow multiple inclusions */#define __SUPERLU_DCOMPLEX/* * This header file is to be included in source files z*.c */#ifndef DCOMPLEX_INCLUDE#define DCOMPLEX_INCLUDEtypedef struct { double r, i; } doublecomplex;/* Macro definitions *//* Complex Addition c = a + b */#define z_add(c, a, b) { (c)->r = (a)->r + (b)->r; \ (c)->i = (a)->i + (b)->i; }/* Complex Subtraction c = a - b */#define z_sub(c, a, b) { (c)->r = (a)->r - (b)->r; \ (c)->i = (a)->i - (b)->i; }/* Complex-Double Multiplication */#define zd_mult(c, a, b) { (c)->r = (a)->r * (b); \ (c)->i = (a)->i * (b); }/* Complex-Complex Multiplication */#define zz_mult(c, a, b) { \ double cr, ci; \ cr = (a)->r * (b)->r - (a)->i * (b)->i; \ ci = (a)->i * (b)->r + (a)->r * (b)->i; \ (c)->r = cr; \ (c)->i = ci; \ }#define zz_conj(a, b) { \ (a)->r = (b)->r; \ (a)->i = -((b)->i); \ }/* Complex equality testing */#define z_eq(a, b) ( (a)->r == (b)->r && (a)->i == (b)->i )#ifdef __cplusplusextern "C" {#endif/* Prototypes for functions in dcomplex.c */void z_div(doublecomplex *, doublecomplex *, doublecomplex *);double z_abs(doublecomplex *); /* exact */double z_abs1(doublecomplex *); /* approximate */void z_exp(doublecomplex *, doublecomplex *);void d_cnjg(doublecomplex *r, doublecomplex *z);double d_imag(doublecomplex *);#ifdef __cplusplus }#endif#endif#endif /* __SUPERLU_DCOMPLEX */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -