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
|
Select every other element of a vector
16219 Solvers
Back to basics 13 - Input variables
203 Solvers
406 Solvers
245 Solvers
Matlab Basics - y as a function of x
241 Solvers