Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - multiply
Search - multiply - List
1.能实现不同的个数的矩阵连乘. 2.最后矩阵大小是8X8. 3是最优的矩阵相乘. 描 述:给定n 个矩阵{A1, A2,...,An},其中Ai与Ai+1是可乘的,i=1,2…,n-1。考察这n个矩阵的连乘积A1A2...An。矩阵A 和B 可乘的条件是矩阵A的列数等于矩阵B 的行数。若A 是一个p x q矩阵,B是一个q * r矩阵,则其乘积C=AB是一个p * r矩阵,需要pqr次数乘。-1. To achieve a number of different matrix continually multiply. 2. The final size of a 8x8 matrix. 3 is the best matrix multiplication. Description : given n matrix (A1, A2 ,..., An), and Ai Ai is a mere, i = 1,2 ..., n-1. N explore the link matrix product ... An A1A2. Matrices A and B can either condition is out of the matrix A few matrix B is the number of rows. If A is a p x q matrix B is a matrix q* r, its product C = AB is a p* r matrix, the number required by pqr.
Date : 2025-12-28 Size : 2kb User : 林小绵

目录: 0、 约定 1、 无符号数一位乘法 2、 符号数一位乘法 3、 布思算法(Booth algorithm) 4、 高基(High Radix)布思算法 5、 迭代算法 6、 乘法运算的实现——迭代 7、 乘法运算的实现——阵列 8、 乘加运算 9、 设计示例1 —— 8位、迭代 1、 实现方案1 —— 一位、无符号 2、 实现方案2 —— 一位、布思 3、 实现方案3 —— 二位 10、设计示例2 —— 16位、阵列 11、设计示例3 —— 32位、 迭代、阵列 1、 实现方案1 —— 乘、加一步走 2、 实现方案2 —— 乘、加两步走-Contents : 0, an agreement, an unsigned multiplication number two, a few multiplication symbols 3, Andrew Bruce algorithm (Booth algorithm) 4. Gao (High Radix), Andrew Bruce algorithm 5, 6 iterative algorithm, the realization of multiplication-- iterative 7, Implementation of multiplication-- Array 8, multiply-add nine, design examples 1-- 8 spaces, an iterative, Implementation 1-- one, two unsigned achieve program 2-- 1, 3, Andrew Bruce, Implementation 3-- 2 10 design examples 2-- 16 spaces, 11 arrays, design examples 3-- 32 spaces, iterative, an array achieve program 1-- x, plus step two, achieving program 2-- x, plus two-step
Date : 2025-12-28 Size : 373kb User : 少华

With shift add way to implement multiply harware circuit.-There are many design for multiply process.This vhdl code provide parallel circuit to do multiply function.
Date : 2025-12-28 Size : 38kb User : ananliu1

4*4计算器 利用并行接口进行键盘扫描,自定义距阵键盘键值,实时显示输入数值,设计的计算器有差错控制功能,能正确进行两位数的加、减、乘、除运算功能。可以进行对输入数据进行编辑,有实时删除功能。配合差错控制,有错误信息提示功能。-4* 4 calculator using the keyboard scan parallel interface, a custom matrix keyboard keys, real-time display input values, there were errors in the design of the calculator control functions, can be a double-digit correctly add, subtract, multiply, in addition to computing capabilities . Of the input data can be edited, there are real-time delete function. With error control, there is an error message prompts.
Date : 2025-12-28 Size : 282kb User : 王莹

very simple multiply tht will let u vomit
Date : 2025-12-28 Size : 4kb User : daniel

Multiplyer in VHDL with TB
Date : 2025-12-28 Size : 1.06mb User : JakubKlouda

This just a Simple Calculator. Which can be used to do the following: add, subtract, multiply and divide. You can also develop this code as desired.-This is just a Simple Calculator. Which can be used to do the following: add, subtract, multiply and divide. You can also develop this code as desired.
Date : 2025-12-28 Size : 777kb User : AY

4 bit multiplier program using shift and multiply
Date : 2025-12-28 Size : 2kb User : karthick

多功能计算器(可以实现加减乘除开根号连乘等)适合初学编程的人-Multi-function calculator (addition, subtraction roots and even multiply, etc.) suitable for beginners programming
Date : 2025-12-28 Size : 1.85mb User : 顾林凯

基于单片机STC89C52简单计算机,可加减乘,-Based on the microcontroller simple computer can add and subtract multiply
Date : 2025-12-28 Size : 1kb User :

矩阵乘法 在主函数中输入m和n (0<m, n<=5),分别定义矩阵Am X n,Bn X m和Cm X m ,从键盘读入矩阵A和B中元素的值。调用函数multiply()计算矩阵C=A XB。并在主函数中输出矩阵C。 -array multiplication
Date : 2025-12-28 Size : 1kb User : 小辛

matrix multiply whith serial program
Date : 2025-12-28 Size : 1.86mb User : sacd

this the answers for the multiply chois quizes of the SSD8 course -this is the answers for the multiply chois quizes of the SSD8 course
Date : 2025-12-28 Size : 86kb User : eko31

本文利用全加器、半加器,利用进位保留的思想,在前向割集中加入四级流水实现了乘法器的设计,提高乘法器的运算速度,并且介绍了乘法器的VHDL的程序编写过程以及代码,并给出了仿真波形-In this paper, the use of the full adder, half adder using carry-save ideological forward cutset added four water to achieve a multiplier design, to improve the speed of operation of the multiplier, and the multiplier in VHDL programming as well as the code given simulation waveforms
Date : 2025-12-28 Size : 336kb User : 刘雅琦

Develop class Polynomial. The internal representation of a Polynomial is an array of terms. Each term contains a coefficient and an exponent. The term 2x4 has the coefficient 2 and the exponent 4. Develop a complete class containing proper constructor and destructor functions as well as set and get functions. The class should also provide the following overloaded operator capabilities: Overload the addition operator (+) to add two Polynomials. Overload the subtraction operator (-) to subtract two Polynomials. Overload the assignment operator to assign one Polynomial to another. Overload the multiplication operator (*) to multiply two Polynomials. Overload the addition assignment operator (+=), subtraction assignment operator (-=), and multiplication assignment operator (*=).
Date : 2025-12-28 Size : 4.45mb User : howard

用c#实现的一个简单的计算器,可以实现加减乘除和连加连减连乘连除等功能。-Using c# to achieve a simple calculator, you can achieve even the addition, subtraction, and even add subtract multiply connected even in addition to other functions.
Date : 2025-12-28 Size : 38kb User : 张晋学

matlab的程序正弦与预先函数与相应的图 还有就是验证繁衍定理-matlab program with a pre-sine function and the corresponding figure there is verification multiply Theorem
Date : 2025-12-28 Size : 1kb User : 任凤臣

qt上关于图片加载与国际化编程文件加载的问题总结-the solve of loading pic and realizing multiply languages in qt
Date : 2025-12-28 Size : 10kb User : 冰点

Atmel Studio6.1的简易使用教程,目标芯片为Atmel 32位单片机(AVR32)AT32UC3A0256,内容包括Studio6.1的工程建立,官方驱动的加载,编译及下载的完整过程和Atmel官方驱动ASF的基本概念以及入门编译碰到的错误,诸如multiply definition of _start的解决方案。-Atmel Studio6.1 simple tutorial, target chip Atmel 32-bit microcontroller (AVR32) AT32UC3A0256, including Studio6.1 project to build a complete official driver loading process, compile and download the basic concepts and Atmel official driver and the ASF Getting compilation errors encountered, such as multiply definition of _start solution.
Date : 2025-12-28 Size : 1.45mb User : 舒涵

从键盘上输入两个整数,计算其乘积,并显示。-Two integers from the keyboard input to calculate the product and displays.
Date : 2025-12-28 Size : 677kb User : 回音
« 12 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.