搜索资源列表
Matrix
- csharp实现的有关矩阵类相关代码,可以供初学者学习,适合一些数学系的同学
Matrix
- C#实现的矩阵运算源程序,其中所有的矩阵运算采用操作符重载技术,实现了矩阵求和,差,积,转置,逆等基本运算。-C# source code implementation of matrix operations, one of all the matrix calculation using operator overloading techniques, implementation of the matrix sum, difference, product, transpose, inve
ImageTransformationSamp
- 图像变形函数使用,利用矩阵类变换图像,可以作为变形参考-The use of image morphing function, the use of matrices transform images, can be used as a reference deformation
Extreme.Mathematics.QuickStartCS
- 用C#写的数学函数库源码。里面包括复数运算,矩阵运算,解方程,积分微分等。非常有用。-Using C# to write the math library source. Includes the plural computing, matrix operations, solution of equations, such as integro-differential. Very useful.
CSharp_DSP
- DSP算法,包括线性卷积、复多项式矩阵积分,离散傅立叶变换、反离散傅立叶变换等-Linear convolution, matrix integral, DFT and IDFT...
CS-Matrix
- CS 矩阵类库 matrix library in csharp-matrix library in csharp
matrixtransform3dview
- Csharp WPF 对图形、图像的矩阵变换程序(matrixtransform3d)-Csharp WPF graphics, images, matrix transformation procedure (matrixtransform3d)
DataStructure
- C#语言版本的各种数据结构的代码,包括线性表、循环链表、堆栈、队列、矩阵、树、图及各种查找算法的代码。-C# language versions of the various data structures of the code, including the linear form, circular linked list, stack, queue, matrix, tree, graph, and a variety of search algorithm code.
CSharpAlgorithm
- C#编写的矩阵运算,在数学上很重要的基础运算-C# written in matrix calculation, the mathematical basis for computing a very important
Algorithm
- 基于C#的常用算法程序。 关键字:复数,积分,矩阵,线性方程组,非线性方程组,最小二乘法-C# Algorithm
wirst_to_tool_system
- 利用一个变换矩阵,实现机器人腕不坐标系和工具坐标系之间的变换。-wrist coordinateSystem and tool coordinateSystem
Matrix
- 一个c# 矩阵类 非常实用 包含矩阵的各种运算-a class of matrix described by csharp,include all kinds of operater,such as (+,-,*)。
cSharp-matrix-operation
- 用c#实现各类矩阵运算的源代码,配套书籍为《C#数值计算算法编程》-Achieved with the c# source code for various types of matrix operations, supporting the book as " C# numerical algorithm programming"
CSharp
- 实现算符优先文法的矩阵,并且对给定的字符串进行规约-Matrix to achieve operator precedence grammar, and on the Statute of the given string
Csharp
- C#实现矩阵的逆,方法为初等转换代码简单明了-C# implementation of the inverse matrix
CSharp--Matrix-operations
- 在C#开发环境下实现矩阵的加,减,逆等运算-In C# development environment to achieve matrix addition, subtraction, and other operations against the
Matrix-Calculator-CSharp
- 矩阵计算器,关键实现类, 矩阵计算器,关键实现类,-Matrix Calculator
Floyd-CSharp
- 弗洛伊德(Floyd)算法 主要是用于计算图中所有顶点对之间的最短距离长度的算法,如果是要求某一个特定点到图中所有顶点之间的最短距离可以用Dijkstra(迪杰斯特拉)算法来求。 弗洛伊德(Floyd)算法的算法过程是: 1、从任意一条单边路径开始。所有两点之间的距离是边的权,如果两点之间没有边相连,则权为无穷大。 2、对于每一对顶点 u 和 v,看看是否存在一个顶点 w 使得从 u 到 w 再到 v 比已知的路径更短。如果是更新它。 把图用邻接矩阵G表示出来