Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = 1;
iterations = 4;
y_correct = [1 3 7 15 31];
assert(isequal(your_fcn_name(A,iterations),y_correct))
y =
1 3
y =
1 3 7
y =
1 3 7 15
y =
1 3 7 15 31
|
2 | Pass |
A = 1;
iterations = 10;
y_correct = [1 3 7 15 31 63 127 255 511 1023 2047];
assert(isequal(your_fcn_name(A,iterations),y_correct))
y =
1 3
y =
1 3 7
y =
1 3 7 15
y =
1 3 7 15 31
y =
1 3 7 15 31 63
y =
1 3 7 15 31 63 127
y =
1 3 7 15 31 63 127 255
y =
1 3 7 15 31 63 127 255 511
y =
1 3 7 15 31 63 127 255 511 1023
y =
1 3 7 15 31 63 127 255 511 1023 2047
|
3 | Pass |
A = 2;
iterations = 10;
y_correct = [2 5 11 23 47 95 191 383 767 1535 3071];
assert(isequal(your_fcn_name(A,iterations),y_correct))
y =
2 5
y =
2 5 11
y =
2 5 11 23
y =
2 5 11 23 47
y =
2 5 11 23 47 95
y =
2 5 11 23 47 95 191
y =
2 5 11 23 47 95 191 383
y =
2 5 11 23 47 95 191 383 767
y =
2 5 11 23 47 95 191 383 767 1535
y =
2 5 11 23 47 95 191 383 767 1535 3071
|
4 | Pass |
A = 3;
iterations = 10;
y_correct = [3 7 15 31 63 127 255 511 1023 2047 4095];
assert(isequal(your_fcn_name(A,iterations),y_correct))
y =
3 7
y =
3 7 15
y =
3 7 15 31
y =
3 7 15 31 63
y =
3 7 15 31 63 127
y =
3 7 15 31 63 127 255
y =
3 7 15 31 63 127 255 511
y =
3 7 15 31 63 127 255 511 1023
y =
3 7 15 31 63 127 255 511 1023 2047
y =
3 7 15 31 63 127 255 511 1023 2047 4095
|
5 | Pass |
A = 5;
iterations = 10;
y_correct = [5 11 23 47 95 191 383 767 1535 3071 6143];
assert(isequal(your_fcn_name(A,iterations),y_correct))
y =
5 11
y =
5 11 23
y =
5 11 23 47
y =
5 11 23 47 95
y =
5 11 23 47 95 191
y =
5 11 23 47 95 191 383
y =
5 11 23 47 95 191 383 767
y =
5 11 23 47 95 191 383 767 1535
y =
5 11 23 47 95 191 383 767 1535 3071
y =
5 11 23 47 95 191 383 767 1535 3071 6143
|
6 | Pass |
A = 7;
iterations = 8;
y_correct = [7 15 31 63 127 255 511 1023 2047];
assert(isequal(your_fcn_name(A,iterations),y_correct))
y =
7 15
y =
7 15 31
y =
7 15 31 63
y =
7 15 31 63 127
y =
7 15 31 63 127 255
y =
7 15 31 63 127 255 511
y =
7 15 31 63 127 255 511 1023
y =
7 15 31 63 127 255 511 1023 2047
|
694 Solvers
480 Solvers
273 Solvers
262 Solvers
2143 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!