Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
A=[1 2; 3 4]
B=[5 6;7 8]
y_correct= [ 1 2 5 6;
3 4 7 8]
assert(isequal(addMatrix(A,B),y_correct))
A =
1 2
3 4
B =
5 6
7 8
y_correct =
1 2 5 6
3 4 7 8
ans =
1 2 5 6
3 4 7 8
|
Remove any row in which a NaN appears
5971 Solvers
1208 Solvers
263 Solvers
07 - Common functions and indexing 3
254 Solvers
Output a vector which is table of 9
102 Solvers