std::slice
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <valarray> 中定义
|
||
class slice; |
||
std::slice
是选择器类,用于标识一个子集,std::valarrayBLAS片。类型std::slice
一个目的持有三个值:起始索引,步幅,和中的值的子集的总数。类型std::slice
的对象可以被用作索引用的valarray的operator[]
.原文:
std::slice
is the selector class that identifies a subset of std::valarray similar to BLAS slice. An object of type std::slice
holds three values: the starting index, the stride, and the total number of values in the subset. Objects of type std::slice
can be used as indexes with valarray's operator[]
.[编辑] 成员函数
构建一个切片 (公共成员函数) | |
访问开始的切片 (公共成员函数) | |
访问的大小的切片 (公共成员函数) | |
访问步幅的切片 (公共成员函数) |
[编辑] 示例
准系统的valarray追查计算功能的支持Matrix类.
原文:
Barebones valarray-backed Matrix class with a 追查 calculating function.
#include <iostream> #include <valarray> class Matrix { std::valarray<int> data; int dim; public: Matrix(int r, int c) : data(r*c), dim(c) {} int& operator()(int r, int c) {return data[r*dim + c];} int trace() const { return data[std::slice(0, dim, dim+1)].sum(); } }; int main() { Matrix m(3,3); int n = 0; for(int r=0; r<3; ++r) for(int c=0; c<3; ++c) m(r, c) = ++n; std::cout << "Trace of the matrix (1,2,3) (4,5,6) (7,8,9) is " << m.trace() << '\n'; }
输出:
Trace of the matrix (1,2,3) (4,5,6) (7,8,9) is 15
[编辑] 另请参阅
获取/设置valarray的元素,切片,或面罩 原文: get/set valarray element, slice, or mask (公共成员函数) | |
广义片的valarray的起始索引,设置的长度,设置的步伐 原文: generalized slice of a valarray: starting index, set of lengths, set of strides (类) | |
代理的valarray的应用切片后的一个子集 原文: proxy to a subset of a valarray after applying a slice (类模板) |