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))
ans =
10
ans =
10 5
ans =
10 5 13
ans =
10 5 13 27
|
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))
ans =
15
ans =
15 13
ans =
15 13 0
ans =
15 13 0 27
|
9833 Solvers
1365 Solvers
235 Solvers
First non-zero element in each column
593 Solvers
Sum of diagonals elements of a matrix
166 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!