Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
matrix=magic(4);
value=6;
y_correct=[6 12 9 7; 15 1 4 14; 3 13 16 2; 10 8 5 11];
assert(isequal(front_row(matrix,value),y_correct))
ans =
[]
ans =
[]
|
2 | Pass |
matrix=magic(5);
value=3;
matrix(3,2)=value;
y_correct=[3 13 20 22 4; 12 19 21 3 10; 18 25 2 9 11; 24 1 8 15 17; 5 7 14 16 23];
assert(isequal(front_row(matrix,value),y_correct))
ans =
[]
ans =
[]
|
3 | Pass |
matrix=magic(7);
value=500;
assert(isequal(front_row(matrix,value),matrix))
ans =
[]
|
537 Solvers
235 Solvers
4332 Solvers
126 Solvers
254 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!