Class Vector
-
template<unsigned N, typename T>
class Vector -
Subclassed by Matrix< 4, 4, std::complex< double > >
Public Functions
-
inline Vector()
Default constructor.
-
template<typename U>
inline Vector &operator=(const Vector<N, U> &s) Set this instance equal to another Vector
-
template<typename U>
inline Vector &operator*=(const U &a) Scalar multiplication.
Vector multiplication Vector& operator *= (const Vector& s) { *this = *this * s; return *this; }
-
inline unsigned size() const
Dimension of data.
-
inline Vector()