本文整理汇总了C++中aol::Vector::size方法的典型用法代码示例。如果您正苦于以下问题:C++ Vector::size方法的具体用法?C++ Vector::size怎么用?C++ Vector::size使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类aol::Vector
的用法示例。
在下文中一共展示了Vector::size方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
void aol::Vector<_DataType>::pushBackValues ( const aol::Vector<_DataType> &otherVector ) {
const int currentSize = this->size();
this->growBy ( otherVector.size() );
for ( int i = 0; i < otherVector.size(); ++i ) {
this->set ( currentSize + i, otherVector.get ( i ) );
}
}
示例2: Exception
void aol::Vector<_DataType>::absDiff ( aol::Vector<_DataType> const& Vec1,
aol::Vector<_DataType> const& Vec2 ) {
if ( Vec1.size() != _size || Vec2.size() != _size ) {
throw aol::Exception ( "dimensions don't match", "aol::Vector::absDiff" );
}
for ( int i = 0; i < _size; ++i ) {
_pData[ i ] = static_cast< DataType > ( aol::Abs ( Vec1._pData[i] - Vec2._pData[i] ) );
}
}
示例3: OutOfBoundsException
_DataType aol::Vector<_DataType>::sumWeighted ( aol::Vector<_DataType> const& weight ) const {
#ifdef BOUNDS_CHECK
if ( weight.size() < _size ) {
char error[1024];
sprintf ( error, "Vector<DataType>::sumWeighted: weight vector not long enough (%d), should be %d at least.\n", weight.size(), _size );
throw OutOfBoundsException ( error, __FILE__, __LINE__ );
}
#endif
_DataType ret = 0.;
_DataType *ptr = _pData;
for ( int i = 0; i < _size; ++i )
ret += *ptr++ * weight[i];
return ret;
}