Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [6 6 6 6 6 6 6 6 ];
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
ans =
logical
1
|
2 | Pass |
x = [6 6 6 1 6 6 6 6 ];
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
ans =
logical
0
|
3 | Pass |
x = [6 6 9 6 6 6 9 1 ];
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
ans =
logical
0
|
Back to basics 23 - Triangular matrix
634 Solvers
400 Solvers
2334 Solvers
1221 Solvers
Calculate Amount of Cake Frosting
7488 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!