Home
last modified time | relevance | path

Searched refs:identity (Results 1 – 8 of 8) sorted by relevance

/cmsis-dsp-latest/Testing/PatternGeneration/
DQR.py85 t = np.identity(currentSize) - beta * np.outer(v,v)
89 q=np.identity(rows)
92 t = np.identity(len(v)) - beta * np.outer(v,v)
DMatrix.py79 p=np.identity(n)
165 m = list(np.identity(d))
1159 p=np.identity(n)-beta * v.T .dot(v)
/cmsis-dsp-latest/Documentation/Doxygen/src/
Dmatrix.md125 * `identity` to create an identity matrix
145 ### identity subsection
148 result = Matrix<float32_t,ROWS,COLS>::identity();
Dmemory_allocator.md78 …ry are creating temporary objects. For instance, if you want to make an identity matrix, you can u…
/cmsis-dsp-latest/dsppp/Examples/
Dmatrix_op.cpp86 result = Matrix<float32_t,ROWS,COLS>::identity(); in main()
/cmsis-dsp-latest/PythonWrapper/examples/
Dtestdsp5.py240 p=np.identity(n)
256 p=np.identity(n)
/cmsis-dsp-latest/dsppp/Include/dsppp/
Dmatrix_impl.hpp475 static Matrix<P,RA,CA,Allocator> identity() in identity() function
792 static Matrix<P,DYNAMIC,DYNAMIC,Allocator> identity(const vector_length_t l) in identity() function
/cmsis-dsp-latest/dsppp/tests/
Dmatrix_test.cpp1288 Matrix<T,R,R,TMP_ALLOC> Q = Matrix<T,R,R>::identity(); in QR()
1297 Matrix<T> Q = Matrix<T>::identity(m.rows()); in QR()