Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
M = magic(5);
thresh = 4;
[r,c]= find(magic(5) > 4)
out = [r c]
assert(isequal(RCgreaterThan(M, thresh),out))
r =
1
2
4
5
1
2
3
4
5
2
3
4
5
1
2
3
4
1
2
3
5
c =
1
1
1
1
2
2
2
2
2
3
3
3
3
4
4
4
4
5
5
5
5
out =
1 1
2 1
4 1
5 1
1 2
2 2
3 2
4 2
5 2
2 3
3 3
4 3
5 3
1 4
2 4
3 4
4 4
1 5
2 5
3 5
5 5
|
2 | Pass |
%%
M = magic(6);
thresh = 2;
[r,c]= find(magic(6) > 2)
out = [r c]
assert(isequal(RCgreaterThan(M, thresh),out))
r =
1
2
3
4
5
6
2
3
4
5
6
1
2
4
5
6
1
2
3
4
5
6
1
2
3
4
5
6
1
2
3
4
5
6
c =
1
1
1
1
1
1
2
2
2
2
2
3
3
3
3
3
4
4
4
4
4
4
5
5
5
5
5
5
6
6
6
6
6
6
out =
1 1
2 1
3 1
4 1
5 1
6 1
2 2
3 2
4 2
5 2
6 2
1 3
2 3
4 3
5 3
6 3
1 4
2 4
3 4
4 4
5 4
6 4
1 5
2 5
3 5
4 5
5 5
6 5
1 6
2 6
3 6
4 6
5 6
6 6
|
2197 Solvers
1800 Solvers
Back to basics 9 - Indexed References
392 Solvers
Who knows the last digit of pi?
557 Solvers
465 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!