首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > 其他 > Matrix矩阵运算

Matrix矩阵运算

  • 资源大小:3.85 kB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:1次
  • 资源积分:1积分
  • 标      签: c,vim,matrix

资 源 简 介

矩阵的乘法、加法、减法、数乘和转置。README 中有详细的介绍//========================================================================================= /* Name: matrix.h * Description: declare matrix addition, subtraction and multiplication and so on. * Note: 参与运算和存储的数组元素类型必须为 matrix_t ,否则出错 * Author: Sun Hubing * Date: 2018/5/3 - 2018/6/10 * Email: shbmmd@163.com */ //========================================================================================= #ifndef MATRIX_H #define MATRIX_H typedef int matrix_t; // 矩阵元素的数据类型 typedef unsigned int uint; // 用来计数 /* 矩阵的行列相乘 * 如果矩阵 a 和 b 的行列不满足条件,返回NULL * 如果c = NULL,则申请一块内存存储结果,否则存在 c 中 * Note: c 可以等于 a 或 b */ void *mul_matrix(const void *a, const void *b, void *c, uint a_row, uint a_col, uint b_row, uint b_col); /* 矩阵的加法 * 如果参数非法,返回NULL * 如果c = NULL,则申请一块内存存储结果,否则存在 c 中 * Note: c 可以等于 a 或 b * 不检查a

文 件 列 表

Matrix
Makefile
README
main.c
matrix.h
matrix.c

相 关 资 源

您 可 能 感 兴 趣 的

同 类 别 推 荐

VIP VIP
0.202457s