Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = [1 2 3 4]; x = 2;
y_correct = [1 4 9 16];
assert(isequal(raise_vector(A,x),y_correct))
ans =
1 4 9 16
|
2 | Pass |
A = [81 16 1296]; x = 0.25;
y_correct = [3 2 6];
assert(isequal(raise_vector(A,x),y_correct))
ans =
3 2 6
|
6724 Solvers
489 Solvers
407 Solvers
Test Problem; Create a 5x5 array containing all ones
270 Solvers
Average of corner elements of a matrix (★★)
44 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!