std::valarray::cshift

From Cppreference

Jump to: navigation, search
valarray<T> cshift( int count ) const;

Returns a new valarray of the same size with elements whose positions are shifted circularly by count elements. The new position of each element is (i−count) mod s where i is the previous position and s is size().

Contents

[edit] Parameters

count - number of positions to shift the elements by

[edit] Return value

The resulting valarray with circularly shifted elements.

[edit] Example

[edit] See also

zero-filling shift the elements of the valarray
(public member function)