[ Web Proxy ]
URL:
Viewing: https://ru.cppreference.com/cpp/numeric/valarray/slice [Back]  [Original]

std::slice cppreference.com
cppreference.com

std::slice

cppreference.com

<metanoindex/>

 
C++
(C++20)
(C++20)
(C++11)
(C++20)
/
(C++11)
(C++11)
(C++11)
(C++17)
 
(C++17)
(C++20)
(C++11)
(C++11)
(C++17)
(C++17)
(C++20)
(C++20)
(C++11)
(C++17)
(C++20)
(C++23)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
 
 
<tbody> </tbody>
class slice;
std::slice , std::valarray BLAS . std::slice : , , . std::slice operator[] valarray .
:
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[].
Google.
. .

-

:
constructs a slice
Google.
. .

(public -)
:
accesses the start of the slice
Google.
. .

(public -)
:
accesses the size of the slice
Google.
. .

(public -)
:
accesses the stride of the slice
Google.
. .

(public -)

valarray .
:
Barebones valarray-backed Matrix class with a calculating function.
Google.
. .

#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,
(public -) []
valarray: , ,
() []
valarray slice
( ) []

Web Proxy Viewer  |  New URL  |  Original Page