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))
r =
3
c =
3
x =
9 7 6 12
4 14 15 1
16 2 3 13
5 11 10 8
y =
6 12 9 7
15 1 4 14
3 13 16 2
10 8 5 11
|
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))
r =
3
4
c =
2
5
x =
4 3 13 20 22
10 12 19 21 3
11 18 25 2 9
17 24 1 8 15
23 5 7 14 16
y =
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
|
3 | Pass |
matrix=magic(7);
value=500;
assert(isequal(front_row(matrix,value),matrix))
r =
0×1 empty double column vector
c =
0×1 empty double column vector
|
733 Solvers
185 Solvers
232 Solvers
583 Solvers
268 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!