搜索资源列表
矩阵相乘
- C语言源代码 矩阵相乘-C language source code matrix multiplication
对称矩阵相乘
- 一个“对称矩阵相乘”的实例。其中包含5个源文件。编译运行后,由用户输入两个矩阵,程序自动输出结果-a "symmetric matrix multiplication" examples. Containing five source files. Compiling and running, two from user input matrix, automatically output
矩阵相乘
- 这是一个用C实现矩阵相乘-This is the realization of a C matrix multiplication
矩阵相乘的快速算法
- 矩阵相乘的快速算法-rapid matrix multiplication algorithm
矩阵相乘算法
- 矩阵相乘问题的算法源程序-matrix multiplication, the algorithm source code
两个矩阵相乘的源程序
- 两个矩阵相乘的源程序-two matrix multiplication of the source
矩阵相乘
- 矩阵相乘C语言源代码
MPI下矩阵相乘的实现与分析
- 介绍了MPI下矩阵相乘的实现,并对其进行了分析
矩阵相乘计算
- 一个简单的矩阵相乘程序
矩阵相乘
- 多线程矩阵相乘
稀疏矩阵乘法运算的十字链表实现
- 稀疏矩阵是指那些多数元素为零的矩阵。本文利用稀疏矩阵“稀疏”特点进行存储和计算可以大大节省存储空间,提高计算效率。通过采用标准C++语言设计实现了矩阵的乘法运算器。稀疏矩阵的乘法运算可用于解决许多实际的应用问题.提出一种新颖的稀疏矩阵相乘算法,算法实现中将计算单元由单个元素扩展至行向量,避免了矩阵的转置,减少了扫描次数。利用十字链表表示稀疏矩阵,再将建立好的两个相同行列数的稀疏矩阵进行相乘运算。
稀疏矩阵
- 稀疏矩阵是指那些多数元素为零的矩阵。本文利用稀疏矩阵“稀疏”特点进行存储和计算可以大大节省存储空间,提高计算效率。通过采用标准C++语言设计实现了矩阵的乘法运算器。稀疏矩阵的乘法运算可用于解决许多实际的应用问题.提出一种新颖的稀疏矩阵相乘算法,算法实现中将计算单元由单个元素扩展至行向量,避免了矩阵的转置,减少了扫描次数。利用十字链表表示稀疏矩阵,再将建立好的两个相同行列数的稀疏矩阵进行相乘运算。
Cannon.rar
- 本程序采用vc2005结合openmp实现了并行矩阵相乘的cannon算法,This procedure combines the use of vc2005 OpenMP parallel realization of the cannon matrix multiplication algorithm
mpipar
- 在MPI上实现的矩阵相乘并行计算的源程序。- The matrix realizes which on MPI multiplications the parallel computation source program.
逆
- 两个矩阵相乘的源程序- Two matrices multiplication source program
shijuzhenchengfa
- 用于计算两矩阵相乘,在程序运行时输入矩阵A,B的行列数-Used to calculate the two matrices in the program to run when the input matrix A, B the ranks of a few
iclass
- 此程序是用分治算法思想将两个规模为2^k*2^k的矩阵相乘-This procedure is divided algorithm thinking the two size 2 ^ k* 2 ^ k matrix multiply
jzxc
- 矩阵相乘的算法源代码,源代码是用visual c++编写-Matrix multiplication algorithm source code, source code is visual c++ to prepare
omp_matrix_multiply
- C代码。共享式存储多线程并行计算矩阵相乘代码。适合于SMP结构和多核。-C code. Shared memory multi-threaded parallel computing code matrices. Fit in the structure and multi-core SMP.
矩阵相乘
- 输入矩阵的行数列数及其具体的值,计算矩阵相乘。C语言实现