搜索资源列表
juzenlianchen
- 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 mat
dingdianchengfaqisheji
- 目录: 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位、
jisuanqi
- 设计一个计算器,可以实现输入一些数据进行加减乘除,输出正确的答案-The design of a calculator, can achieve input some data to add, subtract, multiply and divide, output the correct answer
fjsdhgh
- 输入、输出功能,检验输入的数是否为数字功能,ASCII码与二进制数的的相互转化功能,两数相乘功能,因此整个程序定义了两个宏INPUT和MULTIPLE,宏INPUT实现了输入、检验和ASCII码与二进制的相互转换功能,MULTIPLE实现了两数相乘功能,实现输出功能的是子程序OUTPUT,由于在输入的过程中多次用到了回车换行,因此定义了一个回车换行子程序CRLF。-Input and output functions, testing whether the number entered for
multiply
- 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.
jisuanqi12345657
- 4*4计算器 利用并行接口进行键盘扫描,自定义距阵键盘键值,实时显示输入数值,设计的计算器有差错控制功能,能正确进行两位数的加、减、乘、除运算功能。可以进行对输入数据进行编辑,有实时删除功能。配合差错控制,有错误信息提示功能。-4* 4 calculator using the keyboard scan parallel interface, a custom matrix keyboard keys, real-time display input values, there were er
noob_multiply
- very simple multiply tht will let u vomit
Logarithmic_Amplifier
- use logarithmic amplifier to multiply any signal
MULTIPLY
- Multiplyer in VHDL with TB
Calc
- 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
IUST_C++_Project_Matrix
- Matrix Operation, it makes a basic mathematical operation like (Add, Substract, Multiply,Divide) of two matrix
4-bit-multiplier
- 4 bit multiplier program using shift and multiply
gulingkai---2
- 多功能计算器(可以实现加减乘除开根号连乘等)适合初学编程的人-Multi-function calculator (addition, subtraction roots and even multiply, etc.) suitable for beginners programming
calculator
- 计算器JAVA小程序,实现了加减乘除等基本运算。-Calculator JAVA applet, realize the basic operation such as add, subtract, multiply and divide.
para
- matrix multiply whith serial program
array
- 矩阵乘法 在主函数中输入m和n (0<m, n<=5),分别定义矩阵Am X n,Bn X m和Cm X m ,从键盘读入矩阵A和B中元素的值。调用函数multiply()计算矩阵C=A XB。并在主函数中输出矩阵C。 -array multiplication
mcq
- 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
multiply
- 本文利用全加器、半加器,利用进位保留的思想,在前向割集中加入四级流水实现了乘法器的设计,提高乘法器的运算速度,并且介绍了乘法器的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
jisuanji333
- 基于单片机STC89C52简单计算机,可加减乘,-Based on the microcontroller simple computer can add and subtract multiply
Polynomial
- 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 constr