搜索资源列表
2005102611013310480
- 最佳矩阵连乘 给定n个矩阵{A1,A2,…An},其中Ai与A i+1是可乘的,i=1,2…,n-1。考察这n个矩阵的连乘积A1A2…An。矩阵A和B可乘的条件是矩阵A的列数等于矩阵B的行数。若A是一个p×q矩阵,B是一个q×r矩阵,则其乘积C=AB是一个p×r矩阵,需要pqr次数乘。 由于矩阵乘法满足结合律,故计算矩阵的连乘积可以有许多不同的计算次序。例如,设3个矩阵{A1,A2,A3}的维数分别为10×100,100×5,和5×50。若按加括号方式((A1A2)A3)计算,3个矩阵连乘积
MatrixMult
- 用分治法解矩阵乘法(C++实现)-with the partition method for matrix multiplication (C achieved)
listcheng
- C++环境下矩阵乘法的实现使用实例,有详细的注释,适合初学者研究
C源代码实例
- 包含220个C语言的各种源程序:001 第一个C程序 002 运行多个源文件 003 求整数之积 004 比较实数大小 005 字符的输出 006 显示变量所占字节数 007 自增/自减运算 008 数列求和 009 乘法口诀表 010 猜数字游戏 011 模拟ATM(自动柜员机)界面 012 用一维数组统计学生成绩 013 用二维数组实现矩阵转置 014 求解二维数组的最大/最小元素 015 利用数组求前n个
WL40987330 C语言算法集
- 目录 第一部分 基础篇 001 第一个C程序 002 运行多个源文件 003 求整数之积 004 比较实数大小 005 字符的输出 006 显示变量所占字节数 007 自增/自减运算 008 数列求和 009 乘法口诀表 010&
complex_C++.rar
- C++实现的复数类,包含了复数的加、减、乘法运算,和3*3的复数矩阵乘法,C++ Realized plural category, the plural includes the addition, subtraction, multiplication, and 3* 3 complex matrix multiplication
Strassen
- 利用C++实现strassen矩阵乘法,即采用七次乘法的分治法。-The use of C++ realization of Strassen matrix multiplication, namely multiplication seven sub-rule method.
Matrixchainmultiplication
- 给定n个矩阵构成的一个链<A1,A2,…,An>其中i=1,2,…,n,矩阵Ai的维数为pi-1pi,对乘积A1A2…An以一种最小化标量乘法次数的方式进行加全部括号。该问题应用动态规划算法-N matrix of a given composition of a chain <A1,A2,…,An> Which i = 1,2, ..., n, the dimension of the matrix Ai is pi-1pi, on the product A1A2 .
Algorithm
- 基于C#的常用算法程序。 关键字:复数,积分,矩阵,线性方程组,非线性方程组,最小二乘法-C# Algorithm
matrix-transposeandmultiplication-functions
- 运用C++,书写源代码,从而实现矩阵的转置与矩阵乘法的功能,-Using C++, writing source code, in order to achieve matrix transpose and matrix multiplication functions
cvmat
- 在VC++的平台上,显示并说明矩阵的一些操作方法,如生成正态分布、均匀分布的随机矩阵,测试矩阵乘法等-In VC++ platform to show and explain some of the matrix method of operation, such as generating a normal distribution, uniform distribution of the random matrix, test matrix multiplication, etc.
matrix.c
- 采用pthread多线程编程实现的矩阵乘法运算,采用纯c编写-matrix multiplication in multi-thread
MulofMatrix
- 一个用c语言写的稀疏矩阵乘法的小程序,仅供初学者学习参考之用。-Sparse matrix multiplication program written in c language, for beginners to learn the reference.
Matrix
- c++语言,利用模板类实现了矩阵的求逆,矩阵乘法,旋转和平移-using the template class to implement the inverse of the matrix,the multiplication of matrix,the rotation and translation of matrix.
zuoye6
- 矩阵乘法(分治法) 设A 和 B 是两个n * n阶矩阵,求它们两的乘积矩阵C。-Matrix multiplication (divide and conquer) Let A and B be two n* n order matrix, find the product of their two matrix C.
juzheng
- 矩阵乘法(分治法) 设A 和 B 是两个n * n阶矩阵,求它们两的乘积矩阵C。-Matrix multiplication (divide and conquer) Let A and B be two n* n order matrix, find the product of their two matrix C.
Strassen--Algorithm
- Strassen 矩阵乘法的C++实现 非常简洁的代码,注释详尽-Strassen Matrix Multiplication Algorithm
c-program
- (1)乘法口诀表 (2)用一维数组统计学生成绩(3)模拟ATM(自动柜员机)界面(4)用二维数组实现矩阵转置 (5)求解二维数组的最大/最小元素-(1) multiplication tables (2) with a one-dimensional array of student achievement statistics (3) simulated ATM (automated teller machine) interface (4) to achieve a two-dimens
juzhen
- C++语言实现的矩阵的常用计算!包括:矩阵乘法,加法,求逆,转置,-C++ language used in the calculation of matrix! Comprising: a matrix multiplication, addition, inversion, transpose, etc.
矩阵链乘C++
- 矩阵连乘: 设有矩阵M1,M2,M3,M4, 其维数分别是10×20, 20×50, 50×1 和1×100,现要求出这4个矩阵相乘的结果。我们知道,若矩阵A的维数是p×q,矩阵B的维数是q×r,则A与B相乘后所得矩阵AB的维数是p×r。按照矩阵相乘的定义,求出矩阵AB中的一个元素需要做q次乘法(及q-1次加法)。这样,要计算出AB就需要做p×q×r次乘法。为简单起见,且由于加法比同样数量的乘法所用时间要少得多,故这里我们暂不考虑加法的计算量。由于矩阵连乘满足结合律,故计算矩阵连乘的方