Canoe
Comprehensive Atmosphere N' Ocean Engine
|
#include <math.h>
#include <stdio.h>
Go to the source code of this file.
Macros | |
#define | SWAP(a, b) |
#define | TINY 1.e-20 |
#define | A(i, j) a[(m1 + m2 + 1) * (i) + (j)] |
#define | AL(i, j) al[m1 * (i) + (j)] |
Functions | |
void | band_decomp (int n, int m1, int m2, double *a, double *al, int *index, double *d) |
#define SWAP | ( | a, | |
b | |||
) |
Definition at line 14 of file band_decomp.c.
#define TINY 1.e-20 |
Definition at line 21 of file band_decomp.c.
#define A | ( | i, | |
j | |||
) | a[(m1 + m2 + 1) * (i) + (j)] |
Definition at line 24 of file band_decomp.c.
#define AL | ( | i, | |
j | |||
) | al[m1 * (i) + (j)] |
Definition at line 26 of file band_decomp.c.
void band_decomp | ( | int | n, |
int | m1, | ||
int | m2, | ||
double * | a, | ||
double * | al, | ||
int * | index, | ||
double * | d | ||
) |
Definition at line 28 of file band_decomp.c.