Namensräume
Varianten
Aktionen

std::slice

Aus cppreference.com

 
 
Numerik-Bibliothek
Gemeinsame mathematischen Funktionen
Floating-Point-Umgebung
Komplexe Zahlen
Numerische Arrays
Pseudo-Zufallszahlen
Compile-time rationale Arithmetik (C++11)
Generische numerische Operationen
Original:
Generic numeric operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
iota(C++11)
accumulate
inner_product
adjacent_difference
partial_sum
 
 
definiert in Header <valarray>
class slice;
std::slice ist der Selektor Klasse, die eine Teilmenge von std::valarray ähnlich BLAS Scheibe identifiziert. Ein Objekt des Typs std::slice hält drei Werte: die Startindex, die Schrittlänge und die Gesamtzahl der Werte in der Teilmenge. Objekte vom Typ std::slice können als Indizes mit valarray die operator[] verwendet werden .
Original:
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[].
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Member-Funktionen

baut eine Scheibe
Original:
constructs a slice
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(öffentliche Elementfunktion)
greift auf den Start der Scheibe
Original:
accesses the start of the slice
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(öffentliche Elementfunktion)
greift auf die Größe der Scheibe
Original:
accesses the size of the slice
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click