Crate basic_dsp_matrix [−] [src]
Structs
| Matrix2xN | |
| Matrix3xN | |
| Matrix4xN | |
| MatrixMxN |
Traits
| FromMatrix |
Retrieves the underlying storage from a matrix. |
| Matrix |
A trait for matrix types. In this lib a matrix is simply a collection of vectors. The idea is that the matrix types can be used to reduce the size of a large matrix and that the return types are basic enough so that other specialized matrix libs can do the rest of the work, e.g. inverting the resulting matrix. |
| ToComplexFreqMatrix |
Conversion from a generic data type into a dsp vector with complex data. |
| ToComplexTimeMatrix |
Conversion from a generic data type into a dsp vector with complex data. |
| ToDspMatrix |
Conversion from a generic data type into a dsp matrix which tracks
its meta information (domain and number space)
only at runtime. See |
| ToMatrix |
Conversion from a collection of vectors to a matrix. |
| ToRealFreqMatrix |
Conversion from a generic data type into a dsp matrix with real data. |
| ToRealTimeMatrix |
Conversion from a generic data type into a dsp matrix with real data. |