matlab code for half adder
38 次查看(过去 30 天)
显示 更早的评论
function [(d,c)] = HA((a,b)) %UNTITLED Summary of this function goes here % Detailed explanation goes here a = logical([0]); b = logical([1]); c= a&b; d= xor (a,b); while running the code i got only one output but i need value for c and d. while using this function into full adder it gives "Subscripted assignment dimension mismatch". suggest me to overcome this issue.
回答(2 个)
ragxyz
2024-7-29
A=input('enter the input');
B=input('enter the input');
sum=xor(A,B);
carry=and(A,B);
disp(sum);
disp(carry);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!