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))
|
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))
|
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))
|
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))
|
579 Solvers
Generate a random matrix A of (1,-1)
210 Solvers
413 Solvers
583 Solvers
Find the dimensions of a matrix
372 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!