This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
M = 1;
N = 1;
y_correct = [2];
assert(isequal(sumMyIndices(M,N),y_correct))
ans =
2
|
2 | Pass |
%%
M = 1;
N = 2;
y_correct = [2,3];
assert(isequal(sumMyIndices(M,N),y_correct))
ans =
2 3
|
3 | Pass |
%%
M = 3;
N = 2;
y_correct = [2,3; 3 4; 4 5];
assert(isequal(sumMyIndices(M,N),y_correct))
ans =
2 3
3 4
4 5
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
278 Solvers
Celsius to Fahrenheit converter
389 Solvers
321 Solvers
242 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!