基于C语言的矩阵运算库

完全基于C语言的基础矩阵运算库(无稀疏矩阵和多线程支持)

头文件仅声明函数,函数体位于 src/*.c 中,如需简化include步骤,可将 src/*.c 文件中内容粘贴到headers/*.h 末尾。

basicCalculation.c & .h 定义的函数仅支持基础的理想化运算操作,不能产生错误提示和进行异常检测;matrixCalculation.c & .h 对basic中函数进行打包优化,更加友好,建议仅include matrixCalculation.h并使用 其中声明的函数。

Repo

Gitee:

basicMatrixComputingC: 完全使用C语言实现的基础矩阵运算库https://gitee.com/ddddavid-he/basic-matrix-computing-cGithub:

https://github.com/Ddddavid-he/matrixCalculationicon-default.png?t=L9C2https://github.com/Ddddavid-he/matrixCalculation

如有错误疏漏欢迎指正!

你可能感兴趣的:(c语言,矩阵,线性代数)