跳转至

使用说明

使用说明

该文档是对 tiny_dsp 模块的使用说明。

整体引入TinyDSP

Info

适用于C项目,或者结构较为简单的C++项目。

#include "tiny_dsp.h"

分模块引入TinyDSP

Info

适用于需要精确控制引入模块的项目,或者复杂的C++项目。

// 信号处理模块 (signal/)
#include "tiny_conv.h"        // 卷积模块
#include "tiny_corr.h"        // 相关模块
#include "tiny_resample.h"    // 重采样模块

// 滤波器模块 (filter/)
#include "tiny_fir.h"         // FIR滤波器模块
#include "tiny_iir.h"         // IIR滤波器模块

// 变换模块 (transform/)
#include "tiny_fft.h"         // 快速傅里叶变换模块
#include "tiny_dwt.h"         // 离散小波变换模块
#include "tiny_ica.h"         // 独立成分分析模块

// 支持功能模块 (support/)
#include "tiny_view.h"        // 信号查看/支持模块

Tip

具体的使用方法请参考测试代码。