USAGE INSTRUCTIONS¶
Usage Instructions
This document provides usage instructions for the tiny_dsp
module.
Import TinyMath as a Whole¶
Info
Suitable for C projects or projects with a simple structure in C++.
Import TinyMath by Module¶
Info
Suitable for projects that require precise control over module imports or complex C++ projects.
#include "tiny_conv.h" // import convolution module
#include "tiny_corr.h" // import correlation module
...
Tip
For specific usage methods, please refer to the test code.