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))
|
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))
|
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))
|
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))
|
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))
|
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))
|
263 Solvers
Back to basics 21 - Matrix replicating
904 Solvers
Remove white space from the string
143 Solvers
Calculate the area of a triangle between three points
278 Solvers
1228 Solvers