https://github.com/frontmage/matlab_rust
Matlab functions implemented in rust
https://github.com/frontmage/matlab_rust
Last synced: about 1 year ago
JSON representation
Matlab functions implemented in rust
- Host: GitHub
- URL: https://github.com/frontmage/matlab_rust
- Owner: FrontMage
- Created: 2021-04-29T09:18:16.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-29T14:14:14.000Z (about 5 years ago)
- Last Synced: 2025-02-05T16:39:26.150Z (over 1 year ago)
- Language: Rust
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# matlab_rust
Some matlab functions implemented in rust, aiming to be used on `x86_64` CPUs.
So no GPU computing, just threading and SIMD.
Shout out to @RoyiAvital and @ZR Han, who gave amazing insights and Matlab code examples as references.
https://dsp.stackexchange.com/questions/74803/replicate-matlabs-conv2-in-frequency-domain
https://dsp.stackexchange.com/questions/38542/applying-image-filtering-circular-convolution-in-frequency-domain
## implemented functions
- conv2
- xcorr2
Which is just `conv2(a, rot180(b))`