Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
p = [0 0;
1 0;
2 2;
0 1];
ix_correct = [1 3];
assert(isequal(mostDistant(p),ix_correct))
val =
8
index =
3
ix =
1 3
|
2 | Pass |
p = [0 0;
1 0;
2 2;
0 10];
ix_correct = [2 4];
assert(isequal(mostDistant(p),ix_correct))
val =
101
index =
8
ix =
2 4
|
3 | Pass |
p = [0 0;
-1 50];
ix_correct = [1 2];
assert(isequal(mostDistant(p),ix_correct))
val =
2501
index =
2
ix =
1 2
|
4 | Pass |
p = [5 5;
1 0;
2 2;
0 10;
-100 20;
1000 400];
ix_correct = [5 6];
assert(isequal(mostDistant(p),ix_correct))
val =
1354400
index =
30
ix =
5 6
|
How to find the position of an element in a vector without using the find function
2477 Solvers
228 Solvers
251 Solvers
331 Solvers
277 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!