this file introduces some kernel functions includes uniform guass and epi--- and some other ones. It can be used as a reference when a kernel function is needed.
bool lu(double* a, int* pivot, int n);//矩阵LU分解 bool guass(double const* lu, int const* p, double* b, int n);//求线性代数方程组的解 void qr(double* a, double* d, int n); //矩阵的QR分解 bool householder(double const*qr, double const*d, double*b, int n);//求线性代数方程组的解