/* * symbandlu.h */ #ifndef SYMBANDLU #define SYMBANDLU #ifdef OLD #include #else #include "smallmatrix.h" #endif void band(matrix at, vector f, int N, int m); void symbandlu(matrix at, int N, int m); void symbandsolve(matrix at, vector f, int N, int m); #endif