Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [10 20 30; 40 50 60; 70 80 90];
diag_correct = [10 50 90];
antidiag_correct = [ 70 50 30];
[A,B]= your_fcn_name(x);
assert(isequal(A,diag_correct))
assert(isequal(B,antidiag_correct))
a =
10 50 90
ans =
70 50 30
|
2 | Pass |
x = [10 20 30; 40 50 60 ; 70 80 90; 100 74 15];
diag_corrct78 = [10 50 90];
antidiag_corrct78 = [ 100 80 60];
[A3,B3]= your_fcn_name(x);
assert(isequal(A3,diag_corrct78))
assert(isequal(B3,antidiag_corrct78))
a =
10 50 90
ans =
100 80 60
|
3 | Pass |
x = [10 20 30 58; 40 50 60 68 ; 70 80 90 98];
diag_correct7 = [10 50 90];
antidiag_correct7 = [ 70 50 30];
[A3,B3]= your_fcn_name(x);
assert(isequal(A3,diag_correct7))
assert(isequal(B3,antidiag_correct7))
a =
10 50 90
ans =
70 50 30
|
4 | Pass |
t = [0 0 0; 1 0 0 ; 0 2 0; 0 0 3];
diag8 = [0 0 0];
antid7 = [ 0 2 0];
[A3,B3]= your_fcn_name(t);
assert(isequal(A3,diag8))
assert(isequal(B3,antid7))
% m-by-n matrix where m <= n (5)
t = [0 1 0 0; 0 0 2 0 ; 0 0 0 3];
diag8 = [0 0 0];
antid7 = [ 0 0 0];
[A3,B3]= your_fcn_name(t);
assert(isequal(A3,diag8))
assert(isequal(B3,antid7))
a =
0 0 0
ans =
0 2 0
a =
0 0 0
ans =
0 0 0
|
Remove all the words that end with "ain"
1292 Solvers
Return elements unique to either input
550 Solvers
169 Solvers
465 Solvers
569 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!