norms.h

来自「Flens库-一个在C++的矩阵运算库」· C头文件 代码 · 共 31 行

H
31
字号
#ifndef POISSON_SOLVER_KERNEL_IMPL_NORMS_H#define POISSON_SOLVER_KERNEL_IMPL_NORMS_H 1namespace flens {//-- dirichlet poisson 1d ------------------------------------------------------template <typename U>    double    dp1d_normInf(const DenseVector<U> &u);template <typename U>    double    dp1d_norm2sqr(const DenseVector<U> &u);//-- dirichlet poisson 2d ------------------------------------------------------template <typename U>    double    dp2d_normInf(const GeMatrix<U> &u);template <typename U>    double    dp2d_norm2sqr(const GeMatrix<U> &u);} // namespace flens#include <poisson_solver/kernel_impl/norms.tcc>#endif // POISSON_SOLVER_KERNEL_IMPL_NORMS_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?