SuperLU
5.2.0
|
Header file for complex operations. More...
Go to the source code of this file.
Data Structures | |
struct | complex |
Macros | |
#define | SCOMPLEX_INCLUDE |
#define | c_add(c, a, b) |
Complex Addition c = a + b. More... | |
#define | c_sub(c, a, b) |
Complex Subtraction c = a - b. More... | |
#define | cs_mult(c, a, b) |
Complex-Double Multiplication. More... | |
#define | cc_mult(c, a, b) |
Complex-Complex Multiplication. More... | |
#define | cc_conj(a, b) |
#define | c_eq(a, b) ( (a)->r == (b)->r && (a)->i == (b)->i ) |
Complex equality testing. More... | |
Functions | |
void | c_div (complex *, complex *, complex *) |
Complex Division c = a/b. More... | |
double | c_abs (complex *) |
Returns sqrt(z.r^2 + z.i^2) More... | |
double | c_abs1 (complex *) |
Approximates the abs. Returns abs(z.r) + abs(z.i) More... | |
void | c_exp (complex *, complex *) |
Return the exponentiation. More... | |
void | r_cnjg (complex *, complex *) |
Return the complex conjugate. More... | |
double | r_imag (complex *) |
Return the imaginary part. More... | |
complex | c_sgn (complex *) |
SIGN functions for complex number. Returns z/abs(z) More... | |
complex | c_sqrt (complex *) |
Square-root of a complex number. More... | |
Copyright (c) 2003, The Regents of the University of California, through Lawrence Berkeley National Laboratory (subject to receipt of any required approvals from U.S. Dept. of Energy)
All rights reserved.
The source code is distributed under BSD license, see the file License.txt at the top-level directory.
– SuperLU routine (version 2.0) – Univ. of California Berkeley, Xerox Palo Alto Research Center, and Lawrence Berkeley National Lab. November 15, 1997
Contains definitions for various complex operations. This header file is to be included in source files c*.c
#define c_add | ( | c, | |
a, | |||
b | |||
) |
#define c_eq | ( | a, | |
b | |||
) | ( (a)->r == (b)->r && (a)->i == (b)->i ) |
#define c_sub | ( | c, | |
a, | |||
b | |||
) |
#define cc_conj | ( | a, | |
b | |||
) |
#define cc_mult | ( | c, | |
a, | |||
b | |||
) |
#define cs_mult | ( | c, | |
a, | |||
b | |||
) |
#define SCOMPLEX_INCLUDE |
double c_abs | ( | complex * | ) |
double c_abs1 | ( | complex * | ) |
double r_imag | ( | complex * | ) |