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
|
753 Solvers
Set the array elements whose value is 13 to 0
935 Solvers
Find out missing number from a vector of 9 elements
245 Solvers
348 Solvers
Add a row of zeros on top of a matrix
193 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!