Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3; 4 5 6;7 8 9];
y_correct = 40;
assert(isequal(AddMatrixLim(x),y_correct))
|
2 | Pass |
x= [1 5 6 7; 4 9 4 7; 9 4 2 1; 0 1 2 8]
y_correct = 51;
assert(isequal(AddMatrixLim(x),y_correct))
x =
1 5 6 7
4 9 4 7
9 4 2 1
0 1 2 8
|
2486 Solvers
Compute a dot product of two vectors x and y
750 Solvers
Getting the indices from a vector
3212 Solvers
Return the first and last character of a string
3459 Solvers
Matlab Basics II - Extract last 3 elements of a vector
164 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!