Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [2 3 6 9];
y_correct = [2 9 216 6561];
assert(isequal(index_power(x),y_correct))
y =
2
y =
2 9
y =
2 9 216
y =
2 9 216 6561
|
2 | Pass |
x = [1 5 11 0 -3 -6];
y_correct = [1 25 1331 0 -243 46656];
assert(isequal(index_power(x),y_correct))
y =
1
y =
1 25
y =
1 25 1331
y =
1 25 1331 0
y =
1 25 1331 0 -243
y =
1 25 1331 0 -243 46656
|
3 | Pass |
x = [0 8 -12 0 -8 -2];
y_correct = [0 64 -1728 0 -32768 64];
assert(isequal(index_power(x),y_correct))
y =
0
y =
0 64
y =
0 64 -1728
y =
0 64 -1728 0
y =
0 64 -1728 0 -32768
y =
0 64 -1728 0 -32768 64
|
579 Solvers
Create a square matrix of multiples
383 Solvers
695 Solvers
525 Solvers
2236 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!