CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - 矩阵乘法 C

搜索资源列表

  1. xishujuzhen

    0下载:
  2. C语言写的稀疏矩阵的四则运算,里面有加减和乘法-Four sparse matrix computation , written in C language , there are addition and subtraction and multiplication
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-23
    • 文件大小:934.66kb
    • 提供者:Davy Lee
  1. Strassen

    0下载:
  2. 利用C++实现strassen矩阵乘法,即采用七次乘法的分治法。-The use of C++ realization of Strassen matrix multiplication, namely multiplication seven sub-rule method.
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:1.53kb
    • 提供者:吕东
  1. juzhenchengfa

    0下载:
  2. 用C语言编写的矩阵的乘法,并且采用行序方法压缩存储。-Using C language matrix multiplication, and sequence method using compressed row storage.
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:1.43kb
    • 提供者:刘晓
  1. juzhenxiangcheng

    0下载:
  2. 这是一个矩阵相乘的C++程序。它可以实现两个矩阵的乘法运算。-This is a matrix multiplication of C++ program. It allows two matrix multiplication.
  3. 所属分类:Other systems

    • 发布日期:2017-04-08
    • 文件大小:237.99kb
    • 提供者:
  1. juzhen-jisuan

    0下载:
  2. c++课程设计,各类矩阵计算如矩阵加法、乘法、转置等,希望对大家有帮助-C++ curriculum design, various types of matrix calculations in C++ source code, we hope to
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:462.23kb
    • 提供者:wb
  1. MulofMatrix

    0下载:
  2. 一个用c语言写的稀疏矩阵乘法的小程序,仅供初学者学习参考之用。-Sparse matrix multiplication program written in c language, for beginners to learn the reference.
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-28
    • 文件大小:1.06kb
    • 提供者:zy
  1. Matrix

    1下载:
  2. c++语言,利用模板类实现了矩阵的求逆,矩阵乘法,旋转和平移-using the template class to implement the inverse of the matrix,the multiplication of matrix,the rotation and translation of matrix.
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-07
    • 文件大小:1.15mb
    • 提供者:yangpeng
  1. JUZHEN

    0下载:
  2. 基于c++平台,实现矩阵的加法,减法,乘法,使用类和有缘函数。运行界面相对友好-Implement matrix calculations, including reduced by operations, program based on c++ development, using the class and function
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-12
    • 文件大小:2.69mb
    • 提供者:井轩明
  1. TS_Matrix

    0下载:
  2. 用C++在实现数据结构中的稀疏矩阵的转置、加法和乘法-Using C++ data structures in sparse matrix transpose, addition and multiplication
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:1.55kb
    • 提供者:zhao
  1. Sparse-matrix-operation

    0下载:
  2. 稀疏矩阵的乘法和转置算法。 C++ Builder调试通过。 -Sparse matrix operation, multiply, transform.
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:396.37kb
    • 提供者:HY
  1. Strassen--Algorithm

    0下载:
  2. Strassen 矩阵乘法的C++实现 非常简洁的代码,注释详尽-Strassen Matrix Multiplication Algorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1.31kb
    • 提供者:千里卜卜
  1. c-program

    0下载:
  2. (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
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:1.71kb
    • 提供者:kaiba seto
  1. My_MatrixChain

    0下载:
  2. 矩阵连乘问题 -算法分析之动态规划 动态规划方法解决矩阵连乘问题,即寻求多个矩阵连乘时的最好的加括号方式使得总的乘法两最小; 可以设定矩阵个数,手动输入矩阵的阶,显示动态规划算法的表格,即乘法量和括号信息; 多文档,C++6.0- - Matrix continually multiply problems of dynamic programming algorithm for dynamic programming method to analyze and solve problems
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-18
    • 文件大小:4.42mb
    • 提供者:忘了
  1. matrix

    0下载:
  2. 矩阵乘法 给定两个矩阵 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
  3. 所属分类:其他

    • 发布日期:2017-12-19
    • 文件大小:1kb
    • 提供者:leser
  1. MatrixCalculator

    0下载:
  2. 在C中实现矩阵运算,包括求逆 乘法 分解等(the calculation of matrix)
  3. 所属分类:其他

    • 发布日期:2017-12-29
    • 文件大小:5kb
    • 提供者:Hey man
搜珍网 www.dssz.com