CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - Multiplication

搜索资源列表

  1. first

    1下载:
  2. 二维傅里叶变换,对图像进行二维傅里叶变换处理-Two-Dimensional Fast Fourier Transform The purpose of this project is to develop a 2-D FFT program "package" that will be used in several other projects that follow. Your implementation must have the capabilitie
  3. 所属分类:matlab例程

    • 发布日期:2012-11-04
    • 文件大小:720
    • 提供者:solo
  1. vector_metrix_multiplication(MPI)

    2下载:
  2. 并行编程,利用MPI实现向量与矩阵的乘法运算-Parallel programming using MPI to achieve vector and matrix multiplication
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:1589
    • 提供者:sangecoa
  1. mtl4-alpha-1-r6418

    0下载:
  2. 矩阵运算源码最新版本,支持矩阵乘法、转置求逆,特征值特征向量等操作。-Source the latest version of matrix operations in support of matrix multiplication, transpose inverse, eigenvalue eigenvector and so on.
  3. 所属分类:Algorithm

    • 发布日期:2017-03-27
    • 文件大小:385120
    • 提供者:刘小刚
  1. multiplication

    0下载:
  2. 用线性链表实现两个多项式的相乘,将结果以一般多项式的表示显示出来-Linear chain to achieve the multiplication of two polynomials, the results in general show that the polynomial
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1355
    • 提供者:gahn
  1. LinearAlgebra

    0下载:
  2. 线性代数基本实现,各种基础的线性代数计算接口(加减乘除、求逆、求秩、最大线性无关组)以及矩阵的特征值特征向量的计算(QR方法)。含有设计文档。-The basic realization of linear algebra, and linear algebra calculation based interface (addition and subtraction multiplication and division, inverse, and rank, the largest grou
  3. 所属分类:Algorithm

    • 发布日期:2017-03-26
    • 文件大小:293444
    • 提供者:李昂
  1. Calculator

    0下载:
  2. Addition, subtraction and multiplication of big integer numbers, using string.
  3. 所属分类:Algorithm

    • 发布日期:2017-03-28
    • 文件大小:175242
    • 提供者:Mehdi Isaloo
  1. Multiplication

    0下载:
  2. 我自己写的大数乘法的程序,很简单也很适用,稍微改一下就可以变成通用算法。-I write large numbers multiplication procedure is also applicable to very simple, a little change it can become a general algorithm.
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:521
    • 提供者:liuym
  1. matrixmult2

    0下载:
  2. CUDA Fast matrix multiplication and with shared memory.
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:749606
    • 提供者:Nikolay
  1. multiplication-inverse-program

    0下载:
  2. 伽罗瓦域中2^8变换乘法逆运算的matlab程序-Galois field multiplication of 2 ^ 8 inverse transform of the matlab program
  3. 所属分类:matlab

    • 发布日期:2017-04-03
    • 文件大小:568
    • 提供者:liuchengyi
  1. Matrix-multiplication

    0下载:
  2. 基于MPI并行程序的任意矩阵矩阵相乘,其中由主程序负责矩阵的输入输出,在本程序中便于测试默认一个矩阵。-MPI parallel programs based on an arbitrary matrix matrix multiplication, which is responsible for the main input and output matrices, in this process easy to test the default of a matrix.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-28
    • 文件大小:1821
    • 提供者:Aleny
  1. Matrix-multiplication

    0下载:
  2. 主要是用c++语言对存放在文件中的两个矩阵进行乘法运算-It is mainly used c++ language stored in the file of the two matrix multiplication
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-28
    • 文件大小:205178
    • 提供者:wanghuiqin
  1. Multiplication-of-large-numbers

    0下载:
  2. 大整数乘法,大整数,乘法,基板满足科学计算要求-Multiplication of large numbers
  3. 所属分类:Algorithm

    • 发布日期:2017-03-22
    • 文件大小:801
    • 提供者:姚某某
  1. Multiplication-of-large-numbers

    0下载:
  2. 主要通过C++程序语言实现两个高精度大数的相乘运算。-Mainly through the C++ programming language to achieve the multiplication of large numbers of two high-precision operation.
  3. 所属分类:Algorithm

    • 发布日期:2017-03-28
    • 文件大小:969645
    • 提供者:刘旻
  1. multiplication

    0下载:
  2. 乘法 乘式还原 初学者 希望大家多多指教,这个东西我也开不大懂-Multiplication by beginners type restore hope the exhibitions, this thing I do not understand open
  3. 所属分类:Algorithm

    • 发布日期:2017-04-06
    • 文件大小:1167
    • 提供者:Air
  1. Matrix-multiplication-problems-with

    0下载:
  2. 给定n个矩阵{A1,A2,…,An},其中Ai与Ai+1是可乘的,i=1,2,…,n-1。要算出这n个矩阵的连乘积A1A2…An。由于矩阵乘法满足结合律,故计算矩阵的连乘积可以有许多不同的计算次序。这种计算次序可以用加括号的方式来确定。若一个矩阵连乘积的计算次序完全确定,也就是说该连乘积已完全加括号,则可以依此次序反复调用2个矩阵相乘的标准算法计算出矩阵连乘积。本文的功能是采用动态规划算法,给出矩阵的一种最优的加括号方式,是计算量最小。-Given n matrices {A1, A2, ...
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:13712
    • 提供者:阿四
  1. multiplication-table

    0下载:
  2. 利用C++编写的九九乘法表输出程序。使用语言为标准C++。界面美观,程序浅显易懂。-Use the multiplication table in C++ output program.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-02
    • 文件大小:1013496
    • 提供者:baoxiuwu
  1. multiplication-table

    0下载:
  2. 只是一个课堂上做的九九乘法表,可能很多人做过-Just a class to do multiplication table, many people may have done
  3. 所属分类:Algorithm

    • 发布日期:2017-04-01
    • 文件大小:870578
    • 提供者:殇幻之星
  1. Russian-farmer-multiplication

    0下载:
  2. 俄罗斯农夫算法,算法分析期末作业,作业要求不使用乘除法-Russian farmer algorithm does not use multiplication and division
  3. 所属分类:Algorithm

    • 发布日期:2017-04-17
    • 文件大小:8832
    • 提供者:俞明辉
  1. High-precision-multiplication

    0下载:
  2. High precision multiplication 可以进行较大和较小数据乘法计算而不会造成太大误差。-High precision multiplication
  3. 所属分类:Algorithm

    • 发布日期:2017-03-30
    • 文件大小:179907
    • 提供者:liuyangyang
  1. FAST-MULTIPLICATION

    0下载:
  2. FAST MULTIPLICATION: ALGORITHMS AND IMPLEMENTATION Gary W. Bewickб February 1994
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-05-06
    • 文件大小:1042180
    • 提供者:ricvadim
« 12 3 4 5 6 7 8 9 10 ... 46 »
搜珍网 www.dssz.com