Simbody
|
This class is identical to a Vector_; it is used only to manage the C++ rules for when copy constructors are called by introducing a separate type to prevent certain allowed optimizations from occuring when we don't want them. More...
#include <BigMatrix.h>
Public Member Functions | |
VectorView_ (MatrixHelperRep< S > *hrep) | |
VectorView_ (const VectorView_ &v) | |
VectorView_ & | operator= (const VectorView_ &v) |
VectorView_ (const MatrixHelper< S > &h) | |
VectorView_ (MatrixHelper< S > &h) | |
VectorView_ & | operator= (const Base &b) |
VectorView_ & | operator= (const ELT &v) |
Fill current allocation with copies of element. | |
template<class EE > | |
VectorView_ & | operator= (const VectorBase< EE > &m) |
template<class EE > | |
VectorView_ & | operator+= (const VectorBase< EE > &m) |
template<class EE > | |
VectorView_ & | operator-= (const VectorBase< EE > &m) |
VectorView_ & | operator*= (const StdNumber &t) |
VectorView_ & | operator/= (const StdNumber &t) |
VectorView_ & | operator+= (const ELT &b) |
VectorView_ & | operator-= (const ELT &b) |
Related Functions | |
(Note that these are not member functions.) | |
Matrix_<T> serialization and I/O | |
These methods are at namespace scope but are logically part of the Vector classes. These deal with reading and writing Vectors from and to streams, which places an additional requirement on the element type T: the element must support the same operation you are trying to do on the Vector as a whole. | |
template<class T > | |
static std::istream & | fillVectorViewFromStream (std::istream &in, VectorView_< T > &out) |
Read in a fixed number of elements from a stream into an VectorView. | |
template<class T > | |
std::istream & | operator>> (std::istream &in, VectorView_< T > &out) |
Read a (fixed size n) VectorView_<T> from a stream as a sequence of space- or comma-separated values of type T, optionally delimited by parentheses or square brackets, and preceded by "~". |
This class is identical to a Vector_; it is used only to manage the C++ rules for when copy constructors are called by introducing a separate type to prevent certain allowed optimizations from occuring when we don't want them.
Despite the name, this may be an owner if a Vector_ is recast to a VectorView_. However, there are no owner constructors for VectorView_.
SimTK::VectorView_< ELT >::VectorView_ | ( | MatrixHelperRep< S > * | hrep | ) | [inline, explicit] |
SimTK::VectorView_< ELT >::VectorView_ | ( | const VectorView_< ELT > & | v | ) | [inline] |
SimTK::VectorView_< ELT >::VectorView_ | ( | const MatrixHelper< S > & | h | ) | [inline, explicit] |
SimTK::VectorView_< ELT >::VectorView_ | ( | MatrixHelper< S > & | h | ) | [inline, explicit] |
VectorView_& SimTK::VectorView_< ELT >::operator= | ( | const VectorView_< ELT > & | v | ) | [inline] |
VectorView_& SimTK::VectorView_< ELT >::operator= | ( | const Base & | b | ) | [inline] |
VectorView_& SimTK::VectorView_< ELT >::operator= | ( | const ELT & | t | ) | [inline] |
Fill current allocation with copies of element.
Note that this is not the same behavior as assignment for Matrices, where only the diagonal is set (and everything else is set to zero.)
Reimplemented from SimTK::VectorBase< ELT >.
VectorView_& SimTK::VectorView_< ELT >::operator= | ( | const VectorBase< EE > & | m | ) | [inline] |
Reimplemented from SimTK::VectorBase< ELT >.
VectorView_& SimTK::VectorView_< ELT >::operator+= | ( | const VectorBase< EE > & | m | ) | [inline] |
Reimplemented from SimTK::VectorBase< ELT >.
VectorView_& SimTK::VectorView_< ELT >::operator-= | ( | const VectorBase< EE > & | m | ) | [inline] |
Reimplemented from SimTK::VectorBase< ELT >.
VectorView_& SimTK::VectorView_< ELT >::operator*= | ( | const StdNumber & | t | ) | [inline] |
Reimplemented from SimTK::VectorBase< ELT >.
VectorView_& SimTK::VectorView_< ELT >::operator/= | ( | const StdNumber & | t | ) | [inline] |
Reimplemented from SimTK::VectorBase< ELT >.
VectorView_& SimTK::VectorView_< ELT >::operator+= | ( | const ELT & | b | ) | [inline] |
VectorView_& SimTK::VectorView_< ELT >::operator-= | ( | const ELT & | b | ) | [inline] |
static std::istream & fillVectorViewFromStream | ( | std::istream & | in, |
VectorView_< T > & | out | ||
) | [related] |
Read in a fixed number of elements from a stream into an VectorView.
See fillVectorFromStream() for more information; this works the same way.
std::istream & operator>> | ( | std::istream & | in, |
VectorView_< T > & | out | ||
) | [related] |
Read a (fixed size n) VectorView_<T> from a stream as a sequence of space- or comma-separated values of type T, optionally delimited by parentheses or square brackets, and preceded by "~".
If there are no delimiters then we will read size() values and then stop. Otherwise, there must be exactly size() values within the brackets. Each element is read in with its own operator ">>" so this won't work if no such operator is defined for type T.