名前空間
変種
操作

std::valarray<T>::cshift

提供: cppreference.com
< cpp‎ | numeric‎ | valarray
2012年10月26日 (金) 07:00時点におけるTranslationBot (トーク | 投稿記録)による版

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)

 
 
 
 
valarray<T> cshift( int count ) const;
位置count要素により円にシフトされている要素と同じサイズの新規のvalarrayを返します。(i−count) mod sは、前の位置であるとisであり、各要素の新しい位置がsize()です.
Original:
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().
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

目次

パラメータ

count -
によって要素をシフトする位置の数
Original:
number of positions to shift the elements by
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

値を返します

円シフトの要素を持つ結果のvalarray.
Original:
The resulting valarray with circularly shifted elements.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

ノート

関数は std::valarray と異なる戻り値の型を使用して実装することができます。 この場合、その置換型は以下の性質を持ちます。

も参照してください

テンプレート:cpp/numeric/valarray/dcl list shift