Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
v = 0;
H = [0 0 0];
assert(isequal(man(v),H))
|
2 | Pass |
v = [1 4];
H = [1 1 1;4 16 64];
assert(isequal(man(v),H))
|
3 | Pass |
v = [1 2 3];
H = [ 1 1 1;2 4 8; 3 9 27];
assert(isequal(man(v),H))
|
4 | Pass |
v =[2 7 5 1 6 5 1 1 7 9 8 3 8 2 8 4 1 9];
H = [2 4 8;7 49 343;5 25 125;1 1 1;6 36 216;5 25 125;1 1 1;1 1 1;7 49 343;9 81 729;8 64 512;3 9 27;8 64 512;2 4 8;8 64 512;4 16 64;1 1 1;9 81 729];
assert(isequal(man(v),H))
|
874 Solvers
Find the largest value in the 3D matrix
1056 Solvers
390 Solvers
573 Solvers
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!