This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3; 4 5 6];
y_correct = [-3,-3,-3;0,0,0];
assert(isequal(normalize(x),y_correct))
|
2 | Pass |
x=[1; 2; 3]
y_correct = [-2;-1;0];
assert(isequal(normalize(x),y_correct))
x =
1
2
3
|
3 | Pass |
x=[16 2 3 13;5 11 10 8;9 7 6 12;4 14 15 1]
y_correct = [0 -12 -12 0;-11 -3 -5 -5; -7 -7 -9 -1;-12 0 0 -12];
assert(isequal(normalize(x),y_correct))
x =
16 2 3 13
5 11 10 8
9 7 6 12
4 14 15 1
|
Find the two most distant points
1233 Solvers
Back to basics 3 - Temp Directory
277 Solvers
232 Solvers
Convert a vector into a number
442 Solvers
201 Solvers