搜索资源列表
xishujuzhen
- C语言写的稀疏矩阵的四则运算,里面有加减和乘法-Four sparse matrix computation , written in C language , there are addition and subtraction and multiplication
Strassen
- 利用C++实现strassen矩阵乘法,即采用七次乘法的分治法。-The use of C++ realization of Strassen matrix multiplication, namely multiplication seven sub-rule method.
juzhenchengfa
- 用C语言编写的矩阵的乘法,并且采用行序方法压缩存储。-Using C language matrix multiplication, and sequence method using compressed row storage.
juzhenxiangcheng
- 这是一个矩阵相乘的C++程序。它可以实现两个矩阵的乘法运算。-This is a matrix multiplication of C++ program. It allows two matrix multiplication.
juzhen-jisuan
- c++课程设计,各类矩阵计算如矩阵加法、乘法、转置等,希望对大家有帮助-C++ curriculum design, various types of matrix calculations in C++ source code, we hope to
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.
JUZHEN
- 基于c++平台,实现矩阵的加法,减法,乘法,使用类和有缘函数。运行界面相对友好-Implement matrix calculations, including reduced by operations, program based on c++ development, using the class and function
TS_Matrix
- 用C++在实现数据结构中的稀疏矩阵的转置、加法和乘法-Using C++ data structures in sparse matrix transpose, addition and multiplication
Sparse-matrix-operation
- 稀疏矩阵的乘法和转置算法。 C++ Builder调试通过。 -Sparse matrix operation, multiply, transform.
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
My_MatrixChain
- 矩阵连乘问题 -算法分析之动态规划 动态规划方法解决矩阵连乘问题,即寻求多个矩阵连乘时的最好的加括号方式使得总的乘法两最小; 可以设定矩阵个数,手动输入矩阵的阶,显示动态规划算法的表格,即乘法量和括号信息; 多文档,C++6.0- - Matrix continually multiply problems of dynamic programming algorithm for dynamic programming method to analyze and solve problems
matrix
- 矩阵乘法 给定两个矩阵 A 和 B,其中 A 是具有 M 行、K 列的矩阵, B 为 K 行、N 列的矩阵, A 和 B 的矩阵积为矩阵 C, C 为 M 行、N 列。矩阵 C 中第 i 行、第 j 列的元素 Cij 就是矩阵 A 第 i 行每个元素和矩阵 B 第 j 列每个元素乘积的和,即 要求:每个 Ci j 的计算用一个独立的工作线程,因此它将会涉及生成 M×N 个工作线程。主 线程(或称为父线程)将初始化矩阵 A 和 B,并分配足够的内存给矩阵 C,它将容纳矩阵 A 和 B
MatrixCalculator
- 在C中实现矩阵运算,包括求逆 乘法 分解等(the calculation of matrix)