Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = 2;
y_correct = [0 0;
0 1;
1 0;
1 1];
assert(isequal(createTruthTable(x),y_correct))
y =
'00'
y =
2×2 char array
'00'
'01'
y =
3×2 char array
'00'
'01'
'10'
y =
4×2 char array
'00'
'01'
'10'
'11'
|
2 | Fail |
x = 3;
y_correct = [0 0 0;
0 0 1;
0 1 0;
0 1 1;
1 0 0;
1 0 1;
1 1 0;
1 1 1];
assert(isequal(createTruthTable(x),y_correct))
y =
'000'
y =
2×3 char array
'000'
'001'
y =
3×3 char array
'000'
'001'
'010'
y =
4×3 char array
'000'
'001'
'010'
'011'
y =
5×3 char array
'000'
'001'
'010'
'011'
'100'
y =
6×3 char array
'000'
'001'
'010'
'011'
'100'
'101'
y =
7×3 char array
'000'
'001'
'010'
'011'
'100'
'101'
'110'
y =
8×3 char array
'000'
'001'
'010'
'011'
'100'
'101'
'110'
'111'
|
Determine if a Given Number is a Triangle Number
322 Solvers
Back to basics 6 - Column Vector
908 Solvers
Find the largest value in the 3D matrix
1056 Solvers
Find out sum of all elements of given Matrix
349 Solvers
Determine if input is divisible by three.
162 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!