This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
the problem needs more explanation
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = randn(5,5);
assert(isequal(arraySlice(A,4,2),A(:,4)))
|
2 | Fail |
A = randn(5,5);
assert(isequal(arraySlice(A,4,1),A(4,:)))
|
3 | Fail |
A = randn(5,5);
assert(isequal(arraySlice(A,1,10),A))
|
4 | Fail |
A = randn(5,5,5,3);
assert(isequal(arraySlice(A,3,4),A(:,:,:,3)))
|
5 | Pass |
A = randn(1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2);
assert(isequal(arraySlice(A,2,18),A(:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,2)))
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!