how to create function half adder in matlab
    6 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    manaf nehad
 am 2 Apr. 2018
  
    
    
    
    
    Beantwortet: Roger Stafford
      
      
 am 2 Apr. 2018
            halfAdder : it accepts 2 bits as input arguments. It adds these bits and returns 2 bits as output arguments: the sum and the output carry
1 Kommentar
  James Tursa
      
      
 am 2 Apr. 2018
				What is this for? How are the bits passed in? I.e., what are the variable classes involved?
Akzeptierte Antwort
  Roger Stafford
      
      
 am 2 Apr. 2018
        If the input bits are numeric scalars or logical values, b1 and b2, then the sum bit, 's', would be:
s = b1 xor b2;
or else
s = (b1&~b2) | (~b1&b2);
These are equivalent. That leaves you with the 'carry' bit to figure out.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Logical finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


