rwlogo
SourcePro C++ 12.5

SourcePro® C++ API Reference Guide

Product Documentation:

   SourcePro C++
Documentation Home

 All Classes Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
List of all members | Public Member Functions
RWMathVecPick< T > Class Template Reference

Allows selected elements to be addressed in a vector, without creating a new view. More...

#include <rw/math/mthvecpk.h>

Public Member Functions

RWMathVec< T >::size_type length () const
 
T & operator() (int i)
 
operator() (int i) const
 
void operator= (const RWMathVecPick< T > &)
 

Detailed Description

template<class T>
class RWMathVecPick< T >

The RWMathVecPick class allows selected elements to be addressed. Unlike subscripting or slicing, picking does not create a new view.

Example

#include <iostream>
#include <rw/math/mathvec.h>
int main()
{
// Set up picked elements:
RWIntVec ipick("[3 4 8]");
RWMathVec<double> dv(10, 0, 2); // 0 2 4 6 8 10 12 14 16 18
RWMathVecPick<double> dvPick = dv.pick(ipick);
std::cout << dvPick.length() << std::endl; // 3
std::cout << dvPick(0) << std::endl; // 6
std::cout << dvPick(2) << std::endl; // 16
return 0;
}

Member Function Documentation

template<class T>
RWMathVec<T>::size_type RWMathVecPick< T >::length ( ) const
inline

Return the number of elements in the pick

template<class T >
T & RWMathVecPick< T >::operator() ( int  i)
inline

Returns a reference to the value in the associated RWMathVec stored at the index indicated by the i th element of the RWMathVecPick.

template<class T >
T RWMathVecPick< T >::operator() ( int  i) const
inline

Returns the value in the associated RWMathVec stored at the index indicated by the i th element of the RWMathVecPick.

template<class T>
void RWMathVecPick< T >::operator= ( const RWMathVecPick< T > &  )

Assignment operator for RWMathVecPick. The picks must have the same dimensions. The expression:

this = v;

implies thisi = vi


© Copyright Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave and SourcePro are registered trademarks of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.
Provide feedback to Rogue Wave about its documentation.