Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 1; b=0, cin=0;
y = [0 1];
assert(isequal(full_adder(a,b,cin),y))
b =
0
|
2 | Pass |
%%
a = [0;1;0;1;0;1;0;1]; b=[0;0;1;1;0;0;1;1];cin=[0;0;0;0;1;1;1;1];;
y = [0 0;0 1;0 1; 1 0;0 1; 1 0;1 0;1 1];
assert(isequal(full_adder(a,b,cin),y))
|
Make a random, non-repeating vector.
2795 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
Fahrenheit to Celsius converter
358 Solvers
257 Solvers
324 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!