Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 3 4 5 6 7];
y = [5 6 7 2];
assert(isequal(extract_elements(x),y))
ans =
5 6 7 2
|
2 | Pass |
%%
x = [3 7 12 9 4 2 8 3 2 1];
y = [4 2 8 7];
assert(isequal(extract_elements(x),y))
ans =
4 2 8 7
|
3 | Pass |
%%
x = [12.2 16.5 13.2 2.5 9.7 7.6 3.1 1.4];
y = [9.7 7.6 3.1 16.5];
assert(isequal(extract_elements(x),y))
ans =
9.7000 7.6000 3.1000 16.5000
|
2401 Solvers
Getting the indices from a matrice
360 Solvers
Switch matrix to a column vector
260 Solvers
convert matrix to single column
306 Solvers
Find out total non zero element of matrix
193 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!