Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1;
assert(isequal(vec_sign(x),y_correct))
y =
1
y =
1
y =
1
y =
1
|
2 | Pass |
x = [-2 0 5] ;
y_correct = [-1 0 1];
assert(isequal(vec_sign(x),y_correct))
y =
3
y =
3 0
y =
3 0 1
y =
-1 0 1
|
3 | Pass |
x = [-2 -2 -pi 5] ;
y_correct = [-1 -1 -1 1];
assert(isequal(vec_sign(x),y_correct))
y =
4
y =
4
y =
4 0 0 1
y =
-1 -1 -1 1
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
1263 Solvers
620 Solvers
5116 Solvers
1097 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!