This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [-1,-1];
y = [1,1];
z = [4,5];
assert(isequal(distanceRectangle2Point(x,y,z),5))
d_correct = 5;
ans =
5
|
2 | Pass |
x = [-2,-1];
y = [3,1];
z = [1,2];
assert(isequal(distanceRectangle2Point(x,y,z),1))
d_correct = 1;
ans =
1
|
3 | Pass |
x = [1,2];
y = [3,4];
z = [-5,3];
assert(isequal(distanceRectangle2Point(x,y,z),6))
d_correct = 6;
ans =
6
|
4 | Pass |
x = [2,2];
y = [4,4];
z = [3,4];
assert(isequal(distanceRectangle2Point(x,y,z),0))
d_correct = 0;
ans =
0
|
5 | Pass |
x = [-1,0,1];
y = [0,2,4];
z = [4,5,3];
assert(isequal(distanceRectangle2Point(x,y,z),5))
d_correct = 5;
ans =
5
|
6 | Pass |
x = [1,0,1];
y = [2,3,2];
z = [-1,-2,3];
assert(isequal(distanceRectangle2Point(x,y,z),3))
d_correct = 3;
ans =
3
|
1598 Solvers
Find a subset that divides the vector into equal halves
332 Solvers
Replace multiples of 5 with NaN
358 Solvers
Who has power to do everything in this world?
318 Solvers
Create an index-powered vector
352 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!