Lines Matching refs:vector
3 The use of vectors has been explained in @ref dsppp_vector_example "example with vector operations"…
5 The vector template is defined as:
14 * `P` is the datatype of vector elements
15 * `L` is the static length of the vector (length known at build time). `L<0` when the length is dyn…
17 * `Vector_Base<P>` is providing the storage. A vector owns its storage buffer.
56 A vector view is a virtual vector : a view of a vector.
64 This is creating a virtual vector starting at index `2` (3rd element) of vector `d`.
66 You can then operate with this virtual vector:
72 If you display the vector `d`, you'll see that `2.0f` has been added to all elements starting from …
74 `VectorView` do not own their memory. It is owned by the original vector.
96 …he odd elements of the vector to `0.0f`. It is creating a virtual vector with stride `2` and start…
98 Then, all elements of this virtual vector are set to `0.0f`.
111 …: the length known at build time). Note that it is the first index **after** the end of the vector.