Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
v = 0;
H = [0 0 0];
assert(isequal(man(v),H))
H =
0 0 0
|
2 | Pass |
v = [1 4];
H = [1 1 1;4 16 64];
assert(isequal(man(v),H))
H =
1 1 1
4 16 64
|
3 | Pass |
v = [1 2 3];
H = [ 1 1 1;2 4 8; 3 9 27];
assert(isequal(man(v),H))
H =
1 1 1
2 4 8
3 9 27
|
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))
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
|
6719 Solvers
Project Euler: Problem 2, Sum of even Fibonacci
835 Solvers
Change the sign of even index entries of the reversed vector
296 Solvers
216 Solvers
Check that number is whole number
1070 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!