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))
|
951 Solvers
Number of 1s in a binary string
2822 Solvers
middleAsColumn: Return all but first and last element as a column vector
387 Solvers
282 Solvers
255 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!