C# 矩阵计算
private void button3_Click(object sender, EventArgs e)
{
double[] arrDataA = new double[] { , };
double[,] arrDataB = new double[,]{ {,},
{,}
}; Matrix a = new Matrix(arrDataA);
Matrix b = new Matrix(arrDataA);
Matrix c;
c = a + b;
Console.WriteLine("A + B :" + c.ToString());
c = a - b;
Console.WriteLine("A - B :" + c.ToString());
Console.WriteLine("A == B :" + (a == b).ToString());
b = new Matrix(arrDataB);
Console.WriteLine("A == B :" + (a == b).ToString());
c = a * b;
Console.WriteLine("A * B :" + c.ToString());
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks; namespace ProgressTest
{
/// <summary>
/// 矩阵类
/// </summary>
/// <remarks>
/// 孙继磊,2010-10-18
/// sun.j.l.studio@gmail.com
/// </remarks>
public sealed class Matrix
{
int row, column; //矩阵的行列数
double[,] data; //矩阵的数据 #region 构造函数
public Matrix(int rowNum, int columnNum)
{
row = rowNum;
column = columnNum;
data = new double[row, column];
}
public Matrix(double[,] members)
{
row = members.GetUpperBound() + ;
column = members.GetUpperBound() + ;
data = new double[row, column];
Array.Copy(members, data, row * column);
}
public Matrix(double[] vector)
{
row = ;
column = vector.GetUpperBound() + ;
data = new double[, column];
for (int i = ; i < vector.Length; i++)
{
data[, i] = vector[i];
}
}
#endregion #region 属性和索引器
public int rowNum { get { return row; } }
public int columnNum { get { return column; } } public double this[int r, int c]
{
get { return data[r, c]; }
set { data[r, c] = value; }
}
#endregion public override string ToString()
{
string strRet = "";
for(int i=;i<row;i++)
for (int j = ; j < column; j++)
{
strRet += data[i,j] + " , ";
}
return strRet;
}
#region 转置
/// <summary>
/// 将矩阵转置,得到一个新矩阵(此操作不影响原矩阵)
/// </summary>
/// <param name="input">要转置的矩阵</param>
/// <returns>原矩阵经过转置得到的新矩阵</returns>
public static Matrix transpose(Matrix input)
{
double[,] inverseMatrix = new double[input.column, input.row];
for (int r = ; r < input.row; r++)
for (int c = ; c < input.column; c++)
inverseMatrix[c, r] = input[r, c];
return new Matrix(inverseMatrix);
}
#endregion #region 得到行向量或者列向量
public Matrix getRow(int r)
{
if (r > row || r <= ) throw new Exception("没有这一行。");
double[] a = new double[column];
Array.Copy(data, column * (row - ), a, , column);
Matrix m = new Matrix(a);
return m;
}
public Matrix getColumn(int c)
{
if (c > column || c < ) throw new Exception("没有这一列。");
double[,] a = new double[row, ];
for (int i = ; i < row; i++)
a[i, ] = data[i, c];
return new Matrix(a);
}
#endregion #region 操作符重载 + - * / == !=
public static Matrix operator +(Matrix a, Matrix b)
{
if (a.row != b.row || a.column != b.column)
throw new Exception("矩阵维数不匹配。");
Matrix result = new Matrix(a.row, a.column);
for (int i = ; i < a.row; i++)
for (int j = ; j < a.column; j++)
result[i, j] = a[i, j] + b[i, j];
return result;
} public static Matrix operator -(Matrix a, Matrix b)
{
return a + b * (-);
} public static Matrix operator *(Matrix matrix, double factor)
{
Matrix result = new Matrix(matrix.row, matrix.column);
for (int i = ; i < matrix.row; i++)
for (int j = ; j < matrix.column; j++)
matrix[i, j] = matrix[i, j] * factor;
return matrix;
}
public static Matrix operator *(double factor, Matrix matrix)
{
return matrix * factor;
} //a 行元素 * b 列元素
//a 列数 == b行数
public static Matrix operator *(Matrix a, Matrix b)
{
if (a.column != b.row)
throw new Exception("矩阵维数不匹配。");
Matrix result = new Matrix(a.row, b.column);
for (int i = ; i < a.row; i++)
for (int j = ; j < b.column; j++)
for (int k = ; k < a.column; k++)
result[i, j] += a[i, k] * b[k, j]; return result;
}
public static bool operator ==(Matrix a, Matrix b)
{
if (object.Equals(a, b)) return true;
if (object.Equals(null, b))
return a.Equals(b);
return b.Equals(a);
}
public static bool operator !=(Matrix a, Matrix b)
{
return !(a == b);
}
public override bool Equals(object obj)
{
if (obj == null) return false;
if (!(obj is Matrix)) return false;
Matrix t = obj as Matrix;
if (row != t.row || column != t.column) return false;
return this.Equals(t, );
}
/// <summary>
/// 按照给定的精度比较两个矩阵是否相等
/// </summary>
/// <param name="matrix">要比较的另外一个矩阵</param>
/// <param name="precision">比较精度(小数位)</param>
/// <returns>是否相等</returns>
public bool Equals(Matrix matrix, int precision)
{
if (precision < ) throw new Exception("小数位不能是负数");
double test = Math.Pow(10.0, -precision);
if (test < double.Epsilon)
throw new Exception("所要求的精度太高,不被支持。");
for (int r = ; r < this.row; r++)
for (int c = ; c < this.column; c++)
if (Math.Abs(this[r, c] - matrix[r, c]) >= test)
return false; return true;
}
#endregion
}
}
C# 矩阵计算的更多相关文章
- [WebGL入门]十,矩阵计算和外部库
注:文章译自http://wgld.org/,原作者杉本雅広(doxas),文章中假设有我的额外说明,我会加上[lufy:],另外,鄙人webgl研究还不够深入,一些专业词语,假设翻译有误,欢迎大家指 ...
- [图解tensorflow源码] 入门准备工作附常用的矩阵计算工具[转]
[图解tensorflow源码] 入门准备工作 附常用的矩阵计算工具[转] Link: https://www.cnblogs.com/yao62995/p/5773142.html tensorf ...
- C++ 矩阵计算库 :Eigen库
Eigen http://eigen.tuxfamily.org/index.php?title=Main_Page 下载http://bitbucket.org/eigen/eigen/get/3. ...
- Eigen--简单的C++矩阵计算库
晚上突然想写一段小C++程序,要用到矩阵求逆呀乘法呀之类的,所以找了一下有什么现成的可用的C++矩阵计算相关的库,发现有一大堆,在其中各种各样的配置,感觉比较麻烦.从方便性来说Eigen是最方便的了, ...
- opengles 矩阵计算
总的变换矩阵: matrix = projection * view * model 模型矩阵: modelMatrix=translateMatrix * scaleMatrix * rotateM ...
- Scipy学习笔记 矩阵计算
Scipy学习笔记 非本人原创 原链接 http://blog.sina.com.cn/s/blog_70586e000100moen.html 1.逆矩阵的求解 >>>impor ...
- Numpy中的矩阵计算
矩阵初始化 支持matlab语句初始化,支持narray和array初始化. >>> import numpy as np >>> M = np.matrix(&q ...
- hdu 4920 Matrix multiplication (矩阵计算)
题目链接 题意:给两个矩阵a, b, 计算矩阵a*b的结果对3取余. 分析:直接计算时间复杂度是O(n^3),会超时,但是下面第一个代码勉强可以水过,数据的原因. #include <iostr ...
- 基于visual Studio2013解决C语言竞赛题之1046矩阵计算
题目 解决代码及点评 /************************************************************************/ /* 46 ...
随机推荐
- 《Java7中 下划线的新特性》
//Java7引入了一个新功能:程序员可以在数值中使用下画线,不管是 //整形数值,还是浮点型数值,都可以自由地使用下划线.通过下划线 //分隔,可以更直观的分辨数值中到底有多少位. public c ...
- 《hanoi(汉诺塔)问题》求解
//Hanoi(汉诺)塔问题.这是一个古典的数学问题,用递归方法求解.问题如下: /* 古代有一个梵塔,塔内有3个座A,B,C,开始时A座上有64个盘子,盘子大小不等,大的在下,小的在上. 有一个老和 ...
- Android SurfaceView vs TextureView
Android SurfaceView vs TextureView https://github.com/crosswalk-project/crosswalk-website/wiki/Andro ...
- 查看某个html标签有哪些属性和事件
<html><head><script> //查看input标签有哪些属性和事件 function a() { var str = new String(" ...
- JS 用window.open()函数,父级页面如何取到子级页面的返回值?
父窗口:<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> ...
- MouseJack:利用15美元的工具和15行代码控制无线鼠标和键盘
Bastille的研究团队发现了一种针对蓝牙键盘鼠标的攻击,攻击者可以利用漏洞控制你的电脑操作.研究团队将此攻击命名为MouseJack. 七大厂商皆中招 软件工程师马克纽林说:“利用假冒的无线电脑鼠 ...
- 通过一个Thinkphp完成多个项目
1.单独取压缩包中的Thinkphp文件夹 2.在单独的项目内创建一个引入文件 3.通过浏览器访问该index.php 会创建相应的目录
- Alice and Bob(不断补充)
我之前做过一些博弈的题目,以为博弈都是DP,结果被坑了很多次,其实博弈有很多种,在此,把我见过的类型都搬上来. 1,HDU3951(找规律) 题意:把n枚硬币围成一个圆,让Alice和Bob两个人分别 ...
- Android自定义View绘图实现拖影动画
前几天在"Android绘图之渐隐动画"一文中通过画线实现了渐隐动画,但里面有个问题,画笔较粗(大于1)时线段之间会有裂隙,我又改进了一下.这次效果好多了. 先看效果吧: 然后我们 ...
- List<T>转换为DataTable
List<info> infos = Dal.GetInfos(); DataTable dt = new DataTable(); dt.Columns.Add("cName& ...