Home
last modified time | relevance | path

Searched refs:MatrixView (Results 1 – 6 of 6) sorted by relevance

/cmsis-dsp-latest/dsppp/Include/dsppp/
Dmatrix_view.hpp32 struct MatrixView struct
54 explicit MatrixView(T* v, in MatrixView() function
64 explicit MatrixView(const Vector_Base<T> &v, in MatrixView() function
69 virtual ~MatrixView() {}; in ~MatrixView() argument
71 MatrixView(const MatrixView& other): in MatrixView() function
75 MatrixView(MatrixView&& other) : in MatrixView() argument
80 MatrixView& operator=(const MatrixView& other) = delete;
81 MatrixView& operator=(MatrixView&& other) = delete;
113 MatrixView& operator=(const _Expr<Derived>&other) in operator =() argument
124 MatrixView& operator=(const T val) in operator =() argument
[all …]
Dmatrix_impl.hpp169 MatrixView<P,C> sub(const index_t rs,const index_t cs) in sub()
174 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs*stride()+cs),nb_rows,nb_cols)); in sub()
183 const MatrixView<P,C> sub(const index_t rs,const index_t cs) const in sub()
188 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs*stride()+cs),nb_rows,nb_cols)); in sub()
197 MatrixView<P,C> sub(const Slice &rs,const index_t cs) in sub()
202 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs.start*stride()+cs),nb_rows,nb_cols)); in sub()
211 const MatrixView<P,C> sub(const Slice &rs,const index_t cs) const in sub()
216 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs.start*stride()+cs),nb_rows,nb_cols)); in sub()
226 MatrixView<P,C> sub(const index_t rs,const Slice &cs) in sub()
231 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs*stride()+cs.start),nb_rows,nb_cols)); in sub()
[all …]
Dmatrix.hpp40 struct traits<MatrixView<P,S>>
59 struct traits<const MatrixView<P,S>&>
106 struct IsMatrix<MatrixView<P,S>>
112 struct HasStaticStride<MatrixView<P,S>>
118 struct StaticStride<MatrixView<P,S>>
124 struct HasMatrixIndexing<MatrixView<P,S>>
138 struct IsVector<MatrixView<P,CONSTRAINED_DYNAMIC>>
144 struct IsVector<const MatrixView<P,CONSTRAINED_DYNAMIC>&>
172 struct IsMatrix<const MatrixView<P,S>&>
178 struct HasMatrixIndexing<const MatrixView<P,S>&>
[all …]
Dforward.hpp22 struct MatrixView;
/cmsis-dsp-latest/Documentation/Doxygen/src/
Dmatrix.md94 ## MatrixView section in Matrix {#dsppp_matrix}
107 MatrixView<P,C> sub(const index_t rs,
/cmsis-dsp-latest/dsppp/tests/
Dmatrix_test.cpp1314 MatrixView<T> vt(tmpvec,1,NBR-c); in QR()
1332 MatrixView<T> vt(tmpvec,1,NBR-(NBC-1)); in QR()
1348 MatrixView<T> vt(tmpvec,1,NBR-c); in QR()