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
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13046 Solvers
Return the first and last character of a string
3446 Solvers
489 Solvers
462 Solvers
Sum of odd numbers in a matrix
311 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!