Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = false;
assert(isequal(isnilpotent(x),y_correct))
|
2 | Pass |
%%
x = gallery('chebspec',5,0);
y_correct = true;
assert(isequal(isnilpotent(x),y_correct))
|
3 | Pass |
%%
x = gallery('chebspec',3,0);
y_correct = true;
assert(isequal(isnilpotent(x),y_correct))
|
4 | Pass |
%%
x = [1 0 0;0 2 0; 0 0 -3];
y_correct = false;
assert(isequal(isnilpotent(x),y_correct))
|
5 | Pass |
%%
x = [6 -9; 4 -6];
y_correct = true;
assert(isequal(isnilpotent(x),y_correct))
|
6 | Pass |
%%
x = rand(50);
y_correct = false;
assert(isequal(isnilpotent(x),y_correct))
|
2233 Solvers
Number of 1s in the Binary Representation of a Number
319 Solvers
Create a function handle that reverses the input arguments of another function handle
118 Solvers
Sort numbers by outside digits
116 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
230 Solvers