资 源 简 介
矩阵的乘法、加法、减法、数乘和转置。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