CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - Multiplication

搜索资源列表

  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. Multi-byte-multiplication

    0下载:
  2. 1. 操作数在寄存器中,R0--R7 2. 操作数在内RAM中 3. 操作数在外RAM中 不过都大同小异,以2例,是个乘法子程序。 入口:乘数R0,被乘数R1,字节数R7,结果在R0-1. Operands in the registers, R0- R7 2. Operand, including RAM, 3. Operand out RAM, but are similar to two cases, is a multiplication subroutine. Entr
  3. 所属分类:SCM

    • 发布日期:2017-04-05
    • 文件大小:3237
    • 提供者:阁子
  1. Matrix-multiplication

    0下载:
  2. 矩阵乘法,北航c2的某一次作业题,经测试,能通过所有测试点-Matrix multiplication, an operation of a Northern question c2, tested, pass all the test points
  3. 所属分类:Special Effects

    • 发布日期:2017-03-29
    • 文件大小:807
    • 提供者:火乐月半
  1. multiplication

    0下载:
  2. multiplication code with its test for n bit -multiplication code with its test for n bit
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-16
    • 文件大小:104479
    • 提供者:sab
  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. Parallel Matrix multiplication using JOMP
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:420587
    • 提供者:Salman Manzoor
  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

    0下载:
  2. 控制台应用程序:输入输出。要求:输入两个值m,n,输出m,n直接的乘法表-Console application: input and output. Requirements: Enter the two values ​ ​ m, n, the output m, n multiplication table directly
  3. 所属分类:CSharp

    • 发布日期:2017-03-31
    • 文件大小:20521
    • 提供者:立夏
  1. multiplication

    0下载:
  2. multiplication times table from 1 t0 12
  3. 所属分类:Java Develop

    • 发布日期:2017-04-16
    • 文件大小:11424
    • 提供者:deedee akin
  1. Multiplication-of-large-numbers

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

    • 发布日期:2017-03-23
    • 文件大小:801
    • 提供者:姚某某
  1. 32-bit-multiplication

    0下载:
  2. 32 bit multiplication using 8051
  3. 所属分类:Other Embeded program

    • 发布日期:2017-04-10
    • 文件大小:1446
    • 提供者:Ritesh Sarode
  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-29
    • 文件大小:969645
    • 提供者:刘旻
  1. mat

    0下载:
  2. 计算OMP方法的矩阵,采用并行模拟运算。-omp matrix multiplication parallel
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:1742
    • 提供者:孔啸
  1. Matrix-multiplication-using-MPI

    1下载:
  2. 基于C语言的,在大型并行机上使用MPI实现矩阵乘法-Matrix multiplication using MPI implementations
  3. 所属分类:MPI

    • 发布日期:2017-03-27
    • 文件大小:1222
    • 提供者:苗高洁
  1. multiplication

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

    • 发布日期:2017-04-07
    • 文件大小: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. matrix-multiplication

    0下载:
  2. 该文件内的源代码,实现矩阵乘法的高速算法,效率应该不错的-The file' s source code, to achieve high-speed matrix multiplication algorithm, efficiency should be good
  3. 所属分类:MPI

    • 发布日期:2017-03-29
    • 文件大小:3658
    • 提供者:张蓓蓓
  1. multiplication-table

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

    • 发布日期:2017-04-03
    • 文件大小:1013496
    • 提供者:baoxiuwu
  1. Double-Byte-Multiplication

    0下载:
  2. 一个用于EM78P259/260/447的双字节乘法子程序-Double Byte Multiplication used for EM78P259/260/447
  3. 所属分类:assembly language

    • 发布日期:2017-03-30
    • 文件大小:736
    • 提供者:li ang sun
  1. multiplication-formulas

    0下载:
  2. c++简单实现乘法口诀,运行环境为VC++。-Relize the multiplication formulas with c++,and the operating environment is vc++.
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:5096
    • 提供者:王彬
« 1 2 3 45 6 7 8 9 10 ... 50 »
搜珍网 www.dssz.com