Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
aMat = ones(9,9)*2;
bMat = diag([1:5 4:-1:1]);
cMat = reshape(1:100,10,10);
zRef = det(cMat)*(aMat*bMat)'
zMat = MyFunc();
assert(isequal(zRef,zMat))
zRef =
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
|
2 | Pass |
Ref = ones(9,9)*2;
[zMat Mat] = MyFunc();
assert(isequal(Ref,Mat))
|
3 | Pass |
Ref = diag([1:5 4:-1:1]);
[zMat a Mat] = MyFunc();
assert(isequal(Ref,Mat))
|
4 | Pass |
Ref = reshape(1:100,10,10);
[zMat a b Mat] = MyFunc();
assert(isequal(Ref,Mat))
|
5832 Solvers
3892 Solvers
235 Solvers
Back to basics 11 - Max Integer
678 Solvers
485 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!