1 #ifndef SimTK_SIMMATRIX_ROWVECTORBASE_H_
2 #define SimTK_SIMMATRIX_ROWVECTORBASE_H_
166 { Base::template colScaleInPlace<EE>(v);
return *
this; }
168 {
return Base::template colScale<EE>(v,out); }
175 { Base::template elementwiseMultiplyInPlace<EE>(r);
return *
this; }
177 { Base::template elementwiseMultiply<EE>(v,out); }
183 { Base::template elementwiseMultiplyFromLeftInPlace<EE>(r);
return *
this; }
184 template <
class EE>
inline void
189 Base::template elementwiseMultiplyFromLeft<EE>(v,out);
191 template <
class EE>
inline
195 Base::template elementwiseMultiplyFromLeft<EE>(v,out);
201 { Base::template elementwiseDivideInPlace<EE>(r);
return *
this; }
203 { Base::template elementwiseDivide<EE>(v,out); }
209 { Base::template elementwiseDivideFromLeftInPlace<EE>(r);
return *
this; }
210 template <
class EE>
inline void
214 Base::template elementwiseDivideFromLeft<EE>(v,out);
216 template <
class EE>
inline
220 Base::template elementwiseDivideFromLeft<EE>(v,out);
K::StdNumber StdNumber
Definition: CompositeNumericalTypes.h:163
K::Scalar Scalar
Definition: CompositeNumericalTypes.h:160
K::Number Number
Definition: CompositeNumericalTypes.h:162
This is the common base class for Simbody's Vector_ and Matrix_ classes for handling large,...
Definition: MatrixBase.h:68
const MatrixCommitment & getCharacterCommitment() const
Definition: MatrixBase.h:118
MatrixBase & resizeKeep(int m, int n)
Change the size of this matrix, retaining as much of the old data as will fit.
Definition: MatrixBase.h:779
MatrixBase & resize(int m, int n)
Change the size of this matrix.
Definition: MatrixBase.h:773
MatrixView_< EHerm > updTranspose()
Definition: BigMatrix.h:230
int nrow() const
Return the number of rows m in the logical shape of this matrix.
Definition: MatrixBase.h:136
ENumber Number
Definition: MatrixBase.h:98
int ncol() const
Return the number of columns n in the logical shape of this matrix.
Definition: MatrixBase.h:138
MatrixBase & operator=(const MatrixBase &b)
Definition: MatrixBase.h:200
MatrixBase & operator*=(const StdNumber &t)
Definition: MatrixBase.h:289
void clear()
This restores the MatrixBase to the state it would be in had it been constructed specifying only its ...
Definition: MatrixBase.h:287
MatrixHelper< Scalar > & updHelper()
Definition: MatrixBase.h:865
MatrixBase & operator+=(const MatrixBase &r)
Definition: MatrixBase.h:291
VectorView_< ELT > operator()(int j) const
Definition: MatrixBase.h:594
ptrdiff_t nelt() const
Return the number of elements in the logical shape of this matrix.
Definition: MatrixBase.h:147
MatrixBase & operator-=(const MatrixBase &r)
Definition: MatrixBase.h:292
TAbs abs() const
abs() with the result as a function return.
Definition: MatrixBase.h:698
MatrixBase & setTo(const ELT &t)
Fill every element in current allocation with given element (or NaN or 0).
Definition: MatrixBase.h:582
EScalar Scalar
Definition: MatrixBase.h:97
MatrixBase & operator/=(const StdNumber &t)
Definition: MatrixBase.h:290
EStdNumber StdNumber
Definition: MatrixBase.h:99
const MatrixHelper< Scalar > & getHelper() const
Definition: MatrixBase.h:864
MatrixView_< EHerm > transpose() const
Definition: BigMatrix.h:222
A MatrixCharacter is a set containing a value for each of the matrix characteristics except element t...
Definition: MatrixCharacteristics.h:597
A MatrixCommitment provides a set of acceptable matrix characteristics.
Definition: MatrixCharacteristics.h:832
const S * getElt(int i, int j) const
(Advanced) This class is identical to Matrix_ except that it has shallow (reference) copy and assignm...
Definition: MatrixView_.h:43
This is the matrix class intended to appear in user code for large, variable size matrices.
Definition: Matrix_.h:51
This is a dataless rehash of the MatrixBase class to specialize it for RowVectors.
Definition: RowVectorBase.h:42
const TNeg & operator-() const
Definition: RowVectorBase.h:288
THerm transpose() const
Definition: RowVectorBase.h:275
RowVectorBase(const RowVectorBase &source)
Copy constructor is a deep copy (not appropriate for views!).
Definition: RowVectorBase.h:70
ELT & operator()(int j)
Definition: RowVectorBase.h:255
RowVectorBase & operator=(const ELT &t)
Fill current allocation with copies of element.
Definition: RowVectorBase.h:159
RowVectorBase< EE >::template EltResult< ELT >::Mul elementwiseMultiplyFromLeft(const RowVectorBase< EE > &v) const
Definition: RowVectorBase.h:193
RowVectorBase & operator*=(const StdNumber &t)
Definition: RowVectorBase.h:142
RowVectorBase & elementwiseDivideInPlace(const RowVectorBase< EE > &r)
Definition: RowVectorBase.h:200
RowVectorBase & operator-=(const RowVectorBase &r)
Definition: RowVectorBase.h:145
RowVectorView_< ELT > operator()(const Array_< int > &indices)
Definition: RowVectorBase.h:272
void elementwiseMultiplyFromLeft(const RowVectorBase< EE > &v, typename RowVectorBase< EE >::template EltResult< ELT >::Mul &out) const
Definition: RowVectorBase.h:185
RowVectorView_< ELT > operator()(const Array_< int > &indices) const
Definition: RowVectorBase.h:271
RowVectorBase & operator=(const RowVectorBase< EE > &b)
Definition: RowVectorBase.h:147
THerm operator~() const
Definition: RowVectorBase.h:278
RowVectorBase & colScaleInPlace(const VectorBase< EE > &v)
There's only one row here so it's a bit weird to use colScale rather than elementwiseMultiply,...
Definition: RowVectorBase.h:165
RowVectorBase(int n, int stride, Scalar *s)
Construct a writable view into existing data.
Definition: RowVectorBase.h:102
void elementwiseDivideFromLeft(const RowVectorBase< EE > &v, typename RowVectorBase< EE >::template EltResult< ELT >::Dvd &out) const
Definition: RowVectorBase.h:212
RowVectorBase(int n, const ELT *cppInitialValues)
Construct an owner vector of length n, with the elements initialized sequentially from a C++ array of...
Definition: RowVectorBase.h:84
void elementwiseMultiply(const RowVectorBase< EE > &v, typename EltResult< EE >::Mul &out) const
Definition: RowVectorBase.h:176
RowVectorBase(MatrixHelperRep< Scalar > *hrep)
Definition: RowVectorBase.h:307
RowVectorBase(MatrixHelper< Scalar > &h, const typename MatrixHelper< Scalar >::ShallowCopy &s)
Construct a writable view into the source data.
Definition: RowVectorBase.h:115
RowVectorBase & resizeKeep(int n)
Definition: RowVectorBase.h:292
THerm updTranspose()
Definition: RowVectorBase.h:276
RowVectorBase & operator=(const RowVectorBase &b)
Copy assignment is deep copy but behavior depends on type of lhs: if view, rhs must match.
Definition: RowVectorBase.h:136
RowVectorView_< ELT > operator()(int j, int n)
Definition: RowVectorBase.h:259
TAbs abs() const
Definition: RowVectorBase.h:247
ELT sum() const
Definition: RowVectorBase.h:297
RowVectorView_< ELT > updIndex(const Array_< int > &indices)
Definition: RowVectorBase.h:266
ELT & operator[](int j)
Definition: RowVectorBase.h:253
RowVectorBase & elementwiseMultiplyInPlace(const RowVectorBase< EE > &r)
Definition: RowVectorBase.h:174
const ELT & operator[](int j) const
Definition: RowVectorBase.h:252
RowVectorBase(const MatrixHelper< Scalar > &h, const typename MatrixHelper< Scalar >::ShallowCopy &s)
Construct a read-only view of the source data.
Definition: RowVectorBase.h:118
TNeg & operator-()
Definition: RowVectorBase.h:289
RowVectorBase & operator+=(const RowVectorBase< EE > &b)
Definition: RowVectorBase.h:149
RowVectorBase & operator-=(const RowVectorBase< EE > &b)
Definition: RowVectorBase.h:151
RowVectorBase(int n, const ELT &initialValue)
Construct an owner row vector of length n, with each element initialized to the given value.
Definition: RowVectorBase.h:77
RowVectorBase & operator+=(const RowVectorBase &r)
Definition: RowVectorBase.h:144
void elementwiseDivide(const RowVectorBase< EE > &v, typename EltResult< EE >::Dvd &out) const
Definition: RowVectorBase.h:202
TNeg & updNegate()
Definition: RowVectorBase.h:286
const ELT & operator()(int j) const
Definition: RowVectorBase.h:254
RowVectorBase & operator/=(const StdNumber &t)
Definition: RowVectorBase.h:143
RowVectorBase(const TNeg &source)
Implicit conversion from compatible row vector with negated elements.
Definition: RowVectorBase.h:73
RowVectorBase(const MatrixHelper< Scalar > &h, const typename MatrixHelper< Scalar >::DeepCopy &d)
Construct a new owner vector initialized with the data from the source.
Definition: RowVectorBase.h:121
EltResult< EE >::Dvd elementwiseDivide(const RowVectorBase< EE > &v) const
Definition: RowVectorBase.h:204
EltResult< EE >::Mul colScale(const VectorBase< EE > &v) const
Definition: RowVectorBase.h:169
RowVectorBase & elementwiseDivideFromLeftInPlace(const RowVectorBase< EE > &r)
Definition: RowVectorBase.h:208
void clear()
Definition: RowVectorBase.h:295
RowVectorBase(int n=0)
Default constructor makes a 1x0 matrix locked at 1 row; you can provide an initial allocation if you ...
Definition: RowVectorBase.h:65
int nrow() const
Definition: RowVectorBase.h:242
const TNeg & negate() const
Definition: RowVectorBase.h:285
RowVectorView_< ELT > index(const Array_< int > &indices) const
Definition: RowVectorBase.h:262
const RowVectorBase & operator+() const
Definition: RowVectorBase.h:281
RowVectorBase(int n, int stride, const Scalar *s)
Construct a read-only view of existing data.
Definition: RowVectorBase.h:99
RowVectorBase & elementwiseMultiplyFromLeftInPlace(const RowVectorBase< EE > &r)
Definition: RowVectorBase.h:182
void colScale(const VectorBase< EE > &v, typename EltResult< EE >::Mul &out) const
Definition: RowVectorBase.h:167
VectorIterator< ELT, RowVectorBase< ELT > > begin()
Definition: RowVectorBase.h:298
int size() const
Definition: RowVectorBase.h:237
THerm operator~()
Definition: RowVectorBase.h:279
ptrdiff_t nelt() const
Definition: RowVectorBase.h:244
VectorIterator< ELT, RowVectorBase< ELT > > end()
Definition: RowVectorBase.h:301
RowVectorView_< ELT > operator()(int j, int n) const
Definition: RowVectorBase.h:258
RowVectorBase & resize(int n)
Definition: RowVectorBase.h:291
int ncol() const
Definition: RowVectorBase.h:243
EltResult< EE >::Mul elementwiseMultiply(const RowVectorBase< EE > &v) const
Definition: RowVectorBase.h:178
RowVectorBase< EE >::template EltResult< ELT >::Dvd elementwiseDivideFromLeft(const RowVectorBase< EE > &v) const
Definition: RowVectorBase.h:218
(Advanced) This class is identical to RowVector_ except that it has shallow (reference) copy and assi...
Definition: RowVectorView_.h:42
Represents a variable size row vector; much less common than the column vector type Vector_.
Definition: RowVector_.h:52
This is a dataless rehash of the MatrixBase class to specialize it for Vectors.
Definition: VectorBase.h:42
This is an iterator for iterating over the elements of a Vector_ or Vec object.
Definition: VectorIterator.h:52
(Advanced) This class is identical to Vector_ except that it has shallow (reference) copy and assignm...
Definition: VectorView_.h:42
This is the top-level SimTK namespace into which all SimTK names are placed to avoid collision with o...
Definition: Assembler.h:37
ELEM max(const VectorBase< ELEM > &v)
Definition: VectorMath.h:251
Definition: RowVectorBase.h:127
RowVectorBase< typename CNT< ELT >::template Result< P >::Add > Add
Definition: RowVectorBase.h:130
RowVectorBase< typename CNT< ELT >::template Result< P >::Sub > Sub
Definition: RowVectorBase.h:131
RowVectorBase< typename CNT< ELT >::template Result< P >::Dvd > Dvd
Definition: RowVectorBase.h:129
RowVectorBase< typename CNT< ELT >::template Result< P >::Mul > Mul
Definition: RowVectorBase.h:128