搜索资源列表
-
0下载:
C++语言的复数与矩阵运算库,编写工程类软件必备。包括矩阵乘、加、数乘、逆等-C language in the plural and matrix operations for the preparation of engineering software required. Including matrix multiplication, Canada, multiply, the inverse
-
-
0下载:
自己封装的矩阵运算的类,用C#编写,例如转置、求逆、求特征值、矩阵乘法等-Own package matrix operations class, written using C#, such as transposition, inversion, find eigenvalues, matrix multiplication, etc.
-
-
2下载:
用QR分解来求矩阵的全部特征值
包括:QR分解,矩阵转置,;矩阵求逆,矩阵相乘,最后迭代得出特征值-With QR decomposition to the full matrix eigenvalue include: QR decomposition, matrix transpose, matrix inversion, matrix multiplication, and finally reached eigenvalue iteration
-
-
0下载:
矩阵运算源码最新版本,支持矩阵乘法、转置求逆,特征值特征向量等操作。-Source the latest version of matrix operations in support of matrix multiplication, transpose inverse, eigenvalue eigenvector and so on.
-
-
0下载:
矩阵并行算法程序,用c#语言编制,可用于数学并行计算。-Matrix parallel algorithm procedures, with c# Languages can be used in parallel computing mathematics.
-
-
0下载:
矩阵综合运算,包括加减数乘,矩阵相乘,矩阵求逆。-Matrix integrated computing, including a few by addition and subtraction, matrix multiplication, matrix inversion.
-
-
0下载:
用C语言实现数组和矩阵,矩阵和矩阵的乘法。-Implementation using C language array and matrix, matrix and matrix multiplication.
-
-
2下载:
矩阵运算程序 matrix.h
基于TCL Matrix矩阵类,增加了一些使用的运算函数。具体看源程序。
功能分析:
本程序能完成矩阵的输入、输出。具有相同行数和列数的矩阵间的加法、减法、乘法、除法、求逆、求代数余子式、求伴随矩阵、求行列式值、求条件数等运算。符合矩阵乘法规则要求的矩阵间的乘法。方阵间的除法,方阵的求逆。矩阵的求转置矩阵等功能。
文件 TCL Matrix矩阵类.pdf 中介绍了其详细的使用方法。
-Matrix calculation program mat
-
-
0下载:
Matrix (TRANSPOSE , INVERSE , MATRIX INVERSION USING GAUSS-JORDAN REDUCTION AND Calculates the multiplication of two matrix A and B such that C=AB.
-
-
0下载:
CUDA Fast matrix multiplication and with shared memory.
-
-
0下载:
矩阵运算程序,矩阵加法,减法,转置,求逆,乘法,等运算-Matrix operations procedures, matrix addition, subtraction, transpose, inverse, multiplication, and so computing
-
-
0下载:
一个支持矩阵加减乘运算的程序,功能简单.有三个模块,支持其加减乘-A support matrix multiplication, addition and subtraction procedures, functions simple. There are three modules to support their addition and subtraction by
-
-
0下载:
本程序能完成矩阵的输入、输出。具有相同行数和列数的矩阵间的加法、减法。符合矩阵乘法规则要求的矩阵间的乘法。方阵间的除法,方阵的求逆。矩阵的求转置矩阵等功能。-This procedure can complete matrix input and output. With the same number of rows and columns between the matrix addition, subtraction. Meet the requirements of the rules
-
-
0下载:
//--显示矩阵,形参m为行,n为列
void MatrixDisplay(double *A,int m,int n)
//--求矩阵转置,形参m为行,n为列,A转置后存为B
void MatrixInverse(double *A,double *B, int m,int n)
//--求矩阵相乘,A矩阵为[m,p],B矩阵为[p,n],C为[m,n]
void MatrixMultiply(double *A,double *B,double *C ,i
-
-
0下载:
Matrix Chain Multiplication is perhaps the quintessential example of dynamic programming. The problem can be stated as follows: given a chain <A1, A2,..., An> of n matrices, where for i = 1, 2,...,n, matrix Ai has dimension pi-1 x pi, fully par
-
-
0下载:
VC++ 矩阵运算程序及技术文档,主要是进行矩阵的输入、输出运算,本程序能根据矩阵表达式来进行表达式求解。也就是说程序能判定各个运算符的优先权,然后进行分析计算。同时它还可对具有相同行数和列数的矩阵间的加法、减法运算,符合矩阵乘法规则要求的矩阵间的乘法运算,方阵间的除法,方阵的求逆,矩阵的求转置矩阵等运算。
-VC++ matrix operations procedures and technical documentation, primarily the matrix of the i
-
-
0下载:
给定n个矩阵{A1,A2,…,An},其中Ai与Ai+1是可乘的,i=1,2,…,n-1。要算出这n个矩阵的连乘积A1A2…An。由于矩阵乘法满足结合律,故计算矩阵的连乘积可以有许多不同的计算次序。这种计算次序可以用加括号的方式来确定。若一个矩阵连乘积的计算次序完全确定,也就是说该连乘积已完全加括号,则可以依此次序反复调用2个矩阵相乘的标准算法计算出矩阵连乘积。本文的功能是采用动态规划算法,给出矩阵的一种最优的加括号方式,是计算量最小。-Given n matrices {A1, A2, ...
-
-
0下载:
Parallel Matrix Multiplication Algorithms on Hypercube Multiprocessors. three parallel algorithms for matrix multiplication-Parallel Matrix Multiplication Algorithms on Hypercube Multiprocessors. three parallel algorithms for matrix multiplication
-
-
0下载:
矩阵 运算:包括实矩阵相乘,复矩阵相乘,实矩阵、复矩阵求逆。-Matrix operations: real matrix multiplication, complex matrix multiplication, real matrix, and complex matrix inversion.
-
-
0下载:
这是用C++做矩阵求逆和矩阵相乘,可以解简的线性方程。已验证,互相交流~-This is done using C++ matrix inversion and matrix multiplication, linear equations can be solved。
-