# mathx **Repository Path**: siyunchen/mathx ## Basic Information - **Project Name**: mathx - **Description**: 适用于嵌入式端的C语言数学拓展库 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-07-30 - **Last Updated**: 2025-12-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # mathx - 嵌入式C语言数学扩展库 ## 项目概述 mathx是一个轻量级的C语言数学扩展库,专为嵌入式系统设计,提供常用的数学计算和统计功能。 ## 主要功能 - 基本统计计算(求和、平均值、中位数、标准差) - 数组操作(查找最大值、最小值) - 多项式拟合(线性、二次) ## 支持的数据类型 - uint16_t, uint32_t - float, double ## 快速开始 ```c #include "mathx_base.h" int main() { uint32_t data[] = {1, 2, 3, 4, 5}; uint32_t sum = mathx_sum_u32(data, 5); return 0; } ``` ## 许可证 MIT License - 详见LICENSE文件 ## 作者 siyun.chen