Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = [1 2 3 4
5 5 6 5
7 9 8 3];
y_correct = [0 0 0 4
0 0 6 0
0 9 0 0];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Fail |
x = magic(4);
y_correct = [16 0 0 0
0 11 0 0
0 0 0 12
0 0 15 0];
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = pi;
y_correct = pi;
assert(isequal(your_fcn_name(x),y_correct))
|
4 | Pass |
x = 0;
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
|
5 | Fail |
x = toeplitz(1:5);
y_correct = [ 0 0 0 0 5
0 0 0 0 4
3 0 0 0 0
4 0 0 0 0
5 0 0 0 0];
assert(isequal(your_fcn_name(x),y_correct))
|
6 | Fail |
x = ones(5);
y_correct = [ 1 0 0 0 0
1 0 0 0 0
1 0 0 0 0
1 0 0 0 0
1 0 0 0 0];
assert(isequal(your_fcn_name(x),y_correct))
|
7 | Pass |
x =nchoosek(7:9,3);
y_correct =[ 0 0 9];
assert(isequal(your_fcn_name(x),y_correct))
|
8 | Fail |
x =nchoosek(4:9,2);
y_correct = [ 0 5
0 6
0 7
0 8
0 9
0 6
0 7
0 8
0 9
0 7
0 8
0 9
0 8
0 9
0 9];
assert(isequal(your_fcn_name(x),y_correct))
|
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
1223 Solvers
309 Solvers
How many trades represent all the profit?
520 Solvers
379 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!