Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
pos = 1;
y_correct = 1;
assert(isequal(wrapAround(x,pos),y_correct))
ans =
1
|
2 | Pass |
x = [1 2 3 4 5];
pos = 99;
y_correct = 4;
assert(isequal(wrapAround(x,pos),y_correct))
ans =
4
|
3 | Pass |
x = 7:101;
pos = 909;
y_correct = 60;
assert(isequal(wrapAround(x,pos),y_correct))
ans =
60
|
4 | Pass |
x = 5:5:100;
pos = 101;
y_correct = 5;
assert(isequal(wrapAround(x,pos),y_correct))
ans =
5
|
5 | Pass |
x = -17:3:99;
pos = 1001;
y_correct = 58;
assert(isequal(wrapAround(x,pos),y_correct))
ans =
58
|
6 | Pass |
x = 1:3:777;
pos = 789;
y_correct = 34;
assert(isequal(wrapAround(x,pos),y_correct))
ans =
34
|
405 Solvers
Back to basics 8 - Matrix Diagonals
781 Solvers
5113 Solvers
Change the first and last diagonal element of the identity matrix to zero
117 Solvers
708 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!