Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
v = 1:6;
n=3
vNew = 4:6;
assert(isequal(returnGreaterThan(v,n),vNew))
n =
3
v =
4 5 6
|
2 | Pass |
v = [10:-2:-10];
n=0
vNew = [10 8 6 4 2];
assert(isequal(returnGreaterThan(v,n),vNew))
n =
0
v =
10 8 6 4 2
|
3 | Pass |
v = [4 pi -2 0 -17000 8 91];
n=3
vNew = [4 pi 8 91];
assert(isequal(returnGreaterThan(v,n),vNew))
n =
3
v =
4.0000 3.1416 8.0000 91.0000
|
Find the two most distant points
1629 Solvers
Set the array elements whose value is 13 to 0
941 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
547 Solvers
583 Solvers
359 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!