1 Star 3 Fork 2

luoqi/qfoc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
maf.h 486 Bytes
一键复制 编辑 原始数据 按行查看 历史
/**
* @ Author: luoqi
* @ Create Time: 2024-07-22 15:37
* @ Modified by: luoqi
* @ Modified time: 2025-02-17 15:00
* @ Description:
*/
#ifndef _MAF_H
#define _MAF_H
#ifdef __cplusplus
extern "C" {
#endif
#ifndef qfp_t
typedef float qfp_t;
#endif
typedef struct _lpf_sa
{
int wsize;
int head;
qfp_t sum;
qfp_t *buf;
} LpfMaf;
int maf_init(LpfMaf *filter, qfp_t *buf, int wsize);
qfp_t maf_calc(LpfMaf *filter, qfp_t z);
#ifdef __cplusplus
}
#endif
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/logeexpluoqi/qfoc.git
git@gitee.com:logeexpluoqi/qfoc.git
logeexpluoqi
qfoc
qfoc
main

搜索帮助