Vectors of large dimension
Vector of large dimensions are simply modelled by
std::vector. This concerns in particular vectors of nodal values
whose size equal the dimension of some finite element space. Vector
space operations are overloaded for std::vector in the file
vectorops.hpp.
Functions
-
double operator|(const std::vector<double> &x, const std::vector<double> &y)
-
cplx operator|(const std::vector<cplx> &x, const std::vector<cplx> &y)
-
template<typename S, typename T>
bool Close(const std::vector<S> &x, const std::vector<T> &y, const double &tol = 1e-10)
-
std::vector<double> RandomVec(const std::size_t &sz)