博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#矩阵加法、取负、数乘、乘法的实现
阅读量:5743 次
发布时间:2019-06-18

本文共 5265 字,大约阅读时间需要 17 分钟。

hot3.png

1.几个基本函数

1)判断一个二维数组是否为矩阵:如果每行的列数都相等则是矩阵,没有元素的二维数组是矩阵

/// /// 判断一个二维数组是否为矩阵/// /// 二维数组/// 
true:是矩阵 false:不是矩阵
private static bool isMatrix(double[][] matrix){ //空矩阵是矩阵 if (matrix.Length < 1) return true; //不同行列数如果不相等,则不是矩阵 int count = matrix[0].Length; for (int i = 1; i < matrix.Length; i++) { if (matrix[i].Length != count) { return false; } } //各行列数相等,则是矩阵 return true;}

2)计算一个矩阵的行数和列数:就是计算两个维度的Length属性

/// /// 计算一个矩阵的行数和列数/// /// 矩阵/// 
数组:行数、列数
private static int[] MatrixCR(double[][] matrix){ //接收到的参数不是矩阵则报异常 if (!isMatrix(matrix)) { throw new Exception("接收到的参数不是矩阵"); } //空矩阵行数列数都为0 if (!isMatrix(matrix) || matrix.Length == 0) { return new int[2] { 0, 0 }; } return new int[2] { matrix.Length, matrix[0].Length };}

3)向控制台打印矩阵:注意,如果前后都是两个char类型的量,则运算符+会把前后两个字符转化为整数相加,而不会将前后字符视为字符串连接

/// /// 打印矩阵/// /// 待打印矩阵private static void PrintMatrix(double[][] matrix){    for (int i = 0; i < matrix.Length; i++)    {        for (int j = 0; j < matrix[i].Length; j++)        {            Console.Write(matrix[i][j] + "\t");            //注意不能写为:Console.Write(matrix[i][j] + '\t');        }        Console.WriteLine();    }}

2.矩阵加法

/// /// 矩阵加法/// /// 矩阵1/// 矩阵2/// 
private static double[][] MatrixAdd(double[][] matrix1, double[][] matrix2){ //矩阵1和矩阵2须为同型矩阵 if (MatrixCR(matrix1)[0] != MatrixCR(matrix2)[0] || MatrixCR(matrix1)[1] != MatrixCR(matrix2)[1]) { throw new Exception("不同型矩阵无法进行加法运算"); } //生成一个与matrix1同型的空矩阵 double[][] result = new double[matrix1.Length][]; for (int i = 0; i < result.Length; i++) { result[i] = new double[matrix1[i].Length]; } //矩阵加法:把矩阵2各元素值加到矩阵1上,返回矩阵1 for (int i = 0; i < result.Length; i++) { for (int j = 0; j < result[i].Length; j++) { result[i][j] = matrix1[i][j] + matrix2[i][j]; } } return result;}

3.矩阵取负

/// /// 矩阵取负/// /// 矩阵/// 
负矩阵
private static double[][] NegtMatrix(double[][] matrix){ //合法性检查 if (!isMatrix(matrix)) { throw new Exception("传入的参数并不是一个矩阵"); } //参数为空矩阵则返回空矩阵 if (matrix.Length == 0) { return new double[][] { }; } //生成一个与matrix同型的空矩阵 double[][] result = new double[matrix.Length][]; for (int i = 0; i < result.Length; i++) { result[i] = new double[matrix[i].Length]; } //矩阵取负:各元素取相反数 for (int i = 0; i < result.Length; i++) { for (int j = 0; j < result[0].Length; j++) { result[i][j] = -matrix[i][j]; } } return result;}

4.矩阵数乘

/// /// 矩阵数乘/// /// 矩阵/// 常数/// 
private static double[][] MatrixMult(double[][] matrix, double num){ //合法性检查 if (!isMatrix(matrix)) { throw new Exception("传入的参数并不是一个矩阵"); } //参数为空矩阵则返回空矩阵 if (matrix.Length == 0) { return new double[][] { }; } //生成一个与matrix同型的空矩阵 double[][] result = new double[matrix.Length][]; for (int i = 0; i < result.Length; i++) { result[i] = new double[matrix[i].Length]; } //矩阵数乘:用常数依次乘以矩阵各元素 for (int i = 0; i < result.Length; i++) { for (int j = 0; j < result[0].Length; j++) { result[i][j] = matrix[i][j] * num; } } return result;}

5.矩阵乘法

/// /// 矩阵乘法/// /// 矩阵1/// 矩阵2/// 
private static double[][] MatrixMult(double[][] matrix1, double[][] matrix2){ //合法性检查 if (MatrixCR(matrix1)[1] != MatrixCR(matrix2)[0]) { throw new Exception("matrix1 的列数与 matrix2 的行数不想等"); } //矩阵中没有元素的情况 if (matrix1.Length == 0 || matrix2.Length == 0) { return new double[][] { }; } //matrix1是m*n矩阵,matrix2是n*p矩阵,则result是m*p矩阵 int m = matrix1.Length, n = matrix2.Length, p = matrix2[0].Length; double[][] result = new double[m][]; for (int i = 0; i < result.Length; i++) { result[i] = new double[p]; } //矩阵乘法:c[i,j]=Sigma(k=1→n,a[i,k]*b[k,j]) for (int i = 0; i < m; i++) { for (int j = 0; j < p; j++) { //对乘加法则 for (int k = 0; k < n; k++) { result[i][j] += (matrix1[i][k] * matrix2[k][j]); } } } return result;}

6.函数调用示例

1)Main函数代码

static void Main(string[] args){    //示例矩阵    double[][] matrix1 = new double[][]     {        new double[] { 1, 2, 3 },        new double[] { 4, 5, 6 },        new double[] { 7, 8, 9 }    };    double[][] matrix2 = new double[][]     {        new double[] { 2, 3, 4 },        new double[] { 5, 6, 7 },        new double[] { 8, 9, 10 }    };    //矩阵加法    PrintMatrix(MatrixAdd(matrix1, matrix2));    Console.WriteLine();    //矩阵取负    PrintMatrix(NegtMatrix(matrix1));    Console.WriteLine();                //矩阵数乘    PrintMatrix(MatrixMult(matrix1, 3));    Console.WriteLine();                //矩阵乘法    PrintMatrix(MatrixMult(        new double[][] {            new double[]{ 4, -1, 2 },            new double[]{ 1, 1, 0 },            new double[]{ 0, 3, 1 }},        new double[][] {            new double[]{ 1, 2 },            new double[]{ 0, 1 },            new double[]{ 3, 0 }}));    Console.WriteLine();    Console.ReadLine();}

2)示例运行结果

110149_04rv_1425762.png

转载于:https://my.oschina.net/Tsybius2014/blog/224444

你可能感兴趣的文章
IIS注册asp.net4.0
查看>>
呜呼!Node.js是什么?
查看>>
完整java开发中JDBC连接数据库代码和步骤 JDBC连接数据库
查看>>
CLR thread pool
查看>>
eclipse查看hadoop中文件出现乱码
查看>>
CentOS和Ubuntu下安装配置Greenplum数据库集群(包括安装包和源码编译安装)
查看>>
高级智能研究计划(IARPA):大脑皮层建模
查看>>
如何把返回的对象以及对应的数据保存到二维数组
查看>>
图像处理基础(7):图像的灰度变换
查看>>
Android学习笔记(27):日历视图Calendar
查看>>
hdu 1789 Doing Homework again 贪心
查看>>
Perl模块管理
查看>>
jsplumb 中文教程
查看>>
一起谈.NET技术,ASP.NET缓存初探 使用得当是关键
查看>>
一段c++代码小例子
查看>>
Matlab的XTickLabel中数值带下标
查看>>
Windows平台下利用APM来做负载均衡方案 - 负载均衡(下)
查看>>
由于 Web 服务器上的“ISAPI 和 CGI 限制”列表设置,无法提供您请求的页面
查看>>
没有可用于当前位置的源代码 解决办法
查看>>
一步一步理解Ajax(二)
查看>>