Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 0; 1 1];
y_correct = true;
assert(isequal(fnt(x),y_correct))
y =
1 0
1 1
1 2
y =
1 0
1 1
y =
logical
1
|
2 | Pass |
x = [1 0 0; 1 1 0; 1 2 1];
y_correct = true;
assert(isequal(fnt(x),y_correct))
y =
1 0 0
1 1 0
1 2 1
1 3 3
y =
1 0 0
1 1 0
1 2 1
y =
logical
1
|
3 | Pass |
x = [1 0 0 0; 1 1 0 0; 1 2 1 0; 1 3 3 1];
y_correct = true;
assert(isequal(fnt(x),y_correct))
y =
1 0 0 0
1 1 0 0
1 2 1 0
1 3 3 1
1 4 6 4
y =
1 0 0 0
1 1 0 0
1 2 1 0
1 3 3 1
y =
logical
1
|
4 | Pass |
x = [1 0 1; 1 1 0; 1 2 1];
y_correct = false;
assert(isequal(fnt(x),y_correct))
y =
1 0 0
1 1 0
1 2 1
1 3 3
y =
1 0 0
1 1 0
1 2 1
y =
logical
0
|
5 | Pass |
x = zeros(5);
y_correct = false;
assert(isequal(fnt(x),y_correct))
y =
1 0 0 0 0
1 1 0 0 0
1 2 1 0 0
1 3 3 1 0
1 4 6 4 1
1 5 10 10 5
y =
1 0 0 0 0
1 1 0 0 0
1 2 1 0 0
1 3 3 1 0
1 4 6 4 1
y =
logical
0
|
Determine if a Given Number is a Triangle Number
322 Solvers
351 Solvers
Getting the row and column location from a matrix
236 Solvers
Calculate the derivative of a polynomial
168 Solvers
444 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!