Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = [4,1,2,3];B = [1,2,3,4,5,6,7,8,9,10];
y_correct = [10 5 13 27];
assert(isequal(your_fcn_name(A,B),y_correct))
i =
1
ans =
10
i =
5
ans =
10 5
i =
6
ans =
10 5 13
i =
8
ans =
10 5 13 27
i =
11
|
2 | Pass |
A = [5,2,0,3];B = [1,2,3,4,5,6,7,8,9,10];
y_correct = [15 13 0 27];
assert(isequal(your_fcn_name(A,B),y_correct))
i =
1
ans =
15
i =
6
ans =
15 13
i =
8
ans =
15 13 0
i =
8
ans =
15 13 0 27
i =
11
|
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
381 Solvers
Vectorize the digits of an Integer
269 Solvers
207 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
297 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!