How to Add Two Sign Magnitude Numbers?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
arina octave
il 12 Nov 2015
Commentato: Walter Roberson
il 16 Nov 2015
Hi all, anyone have the idea of how to add two sign magnitude numbers? Well, I think about binary adder but I just get confused about the sign and handling the overflow. Any advice?
Thank you.
0 Commenti
Risposta accettata
Walter Roberson
il 12 Nov 2015
binary adders are fine if you have binary input, but they are not very good if you are, for example, using Variable Base Arithmetic such as times represented in hours minutes and seconds.
Before you can design an addition routine for the numbers, you are going to need to define the properties of the source representations and of the desired output representations.
2 Commenti
Walter Roberson
il 16 Nov 2015
I had to look in several places to confirm, but I do find a statement Over Here that signed values are represented as Two's Complement by the Fixed Point Toolbox, not as Sign/Magnitude.
If you have the .bin of a pair of twos-complement values that have the same scaling (and other properties) and do not have special fimath properties, then you can use a traditional full adder circuit, which you can easily find by using (for example) Google Image Search. If you are using the fixed point toolbox and you are using HDL Coder then it is able to generate an adder circuit for you automatically.
If you have a pair of sign/magnitude binary values, then you use the xor of their sign to determine whether to apply a twos complement of one of the values before entering a full adder circuit. You can locate diagrams through Google Image Search.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su FPGA, ASIC, and SoC Development in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!