conditional_sum_add​er(x,y)

conditional sum adder

You are now following this Submission

conditional_sum_adder(x,y) take two eight bit input x and y and return all sum value step by step
example:
conditional_sum_adder([1 1 0 0 1 1 1 0],[1 0 0 0 1 1 1 1]) will produce
X =
1 1 0 0 1 1 1 0

y =
1 0 0 0 1 1 1 1

______________________________________________________
S00 =
0 1 0 0 0 0 0 1

C00 =
1 0 0 0 1 1 1 0

______________________________________________________
S01 =
1 0 1 1 1 1 1 0

C01 =
1 1 0 0 1 1 1 1

______________________________________________________
______________________________________________________
S10 =
0 1 0 0 1 0 0 1

C10 =
1 0 0 0 1 0 1 0

______________________________________________________
S11 =
1 0 0 1 1 1 1 0

C11 =
1 0 0 0 1 0 1 0

______________________________________________________
______________________________________________________
S20 =
0 1 0 0 1 1 0 1

C20 =
1 0 0 0 1 0 0 0

______________________________________________________
S21 =
0 1 0 1 1 1 1 0

C21 =
1 0 0 0 1 0 0 0

______________________________________________________
______________________________________________________
S30 =
0 1 0 1 1 1 0 1

C30 =
1 0 0 0 0 0 0 0

______________________________________________________

Cite As

ankit gupta (2026). conditional_sum_adder(x,y) (https://se.mathworks.com/matlabcentral/fileexchange/64005-conditional_sum_adder-x-y), MATLAB Central File Exchange. Retrieved .

General Information

MATLAB Release Compatibility

  • Compatible with any release

Platform Compatibility

  • Windows
  • macOS
  • Linux
Version Published Release Notes Action
1.0.0.0