Added ‘DSP-specific Operations’ section to ‘INVENTORY.md’

This commit is contained in:
Vincent Esche 2019-08-19 22:03:47 +02:00
parent e799af112e
commit 641b33b012
1 changed files with 33 additions and 0 deletions

View File

@ -60,6 +60,10 @@
- [Matrix Transposition](#matrix-transposition) - [Matrix Transposition](#matrix-transposition)
- [Matrix Determinant](#matrix-determinant) - [Matrix Determinant](#matrix-determinant)
- [Eigen Decomposition](#eigen-decomposition) - [Eigen Decomposition](#eigen-decomposition)
- [DSP-specific Operations](#dsp-specific-operations)
- [Fast Fourier Transform](#fast-fourier-transform)
- [Convolution](#convolution)
- [Cross-Correlation](#cross-correlation)
## General Arithmetic Operations ## General Arithmetic Operations
@ -616,3 +620,32 @@ Matrix-specific functions & operators
| `(Matrix)` | `eigenDecompose` | n/a | n/a | n/a | | `(Matrix)` | `eigenDecompose` | n/a | n/a | n/a |
</details> </details>
## DSP-specific Operations
<details open>
<summary>
Fast fourier transform functions & operators
</summary>
### [Fast Fourier Transform](https://en.wikipedia.org/wiki/Convolution)
| Arguments | Function | In-Place Function | Operator | In-Place Operator |
|-----------|----------|-------------------|----------|-------------------|
| `(Array)` | `fft` | n/a | n/a | n/a |
### [Convolution](https://en.wikipedia.org/wiki/Convolution)
| Arguments | Function | In-Place Function | Operator | In-Place Operator |
|------------------|----------|-------------------|----------|-------------------|
| `(Array, Array)` | `conv` | n/a | n/a | n/a |
### [Cross-Correlation](https://en.wikipedia.org/wiki/Cross-correlation)
| Arguments | Function | In-Place Function | Operator | In-Place Operator |
|------------------|----------|-------------------|----------|-------------------|
| `(Array, Array)` | `xcorr` | n/a | n/a | n/a |
| `(Array)` | `xcorr` | n/a | n/a | n/a |
</details>