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))
|
1600 Solvers
308 Solvers
Solve the set of simultaneous linear equations
273 Solvers
277 Solvers
Matlab Basics II - Max & Index of Max
188 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!