フィルターのクリア

how to add two binary digits of 8bit size?

1 回表示 (過去 30 日間)
Mohit  Nanduri
Mohit Nanduri 2021 年 11 月 29 日
コメント済み: Rik 2021 年 11 月 30 日
input1 : 8 bit binary digit
input2 : 8 bit binary digit
output : 8 bit binary digit and carry should be stored in another variable
  2 件のコメント
Mohit  Nanduri
Mohit Nanduri 2021 年 11 月 29 日
should not use inbuilt functions. Please help me with this code
Rik
Rik 2021 年 11 月 29 日
This homework question is poorly phrased. It is very difficult to do anything in Matlab without using builtin functions.

サインインしてコメントする。

採用された回答

Chunru
Chunru 2021 年 11 月 29 日
編集済み: Chunru 2021 年 11 月 29 日
a = '01001011';
b = '00100011';
c = '00000000';
% Cosider a carry bit
carry = 0;
% loop through from last bit to first bit
% add the bit from a and b and the carray
% update the results for the current bit and the carry bit
  4 件のコメント
Mohit N
Mohit N 2021 年 11 月 30 日
@Rik actually this is not my homework or assignment please try to understand I am trying to run the output wihtout use of inbuilt functions previously u said that without using built in operators we can't do anything but I got the answer from @Chunru. please try to help @Rik but don't give negative comments.
Rik
Rik 2021 年 11 月 30 日
The answer Chunru gave used the plus operator if I recall correctly. That is a builtin function.
Also, if it isn't homework, why would you limit yourself? Is there some part of binary addition you don't understand and want to do by hand?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by