This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 3;
y_correct =[1 4 9
4 4 9
9 9 9]
assert(isequal(mat(n),y_correct))
y_correct =
1 4 9
4 4 9
9 9 9
y =
1 4 9
4 4 9
9 9 9
|
2 | Pass |
n = 4;
y_correct = [1 4 9 16
4 4 9 16
9 9 9 16
16 16 16 16]
assert(isequal(mat(n),y_correct))
y_correct =
1 4 9 16
4 4 9 16
9 9 9 16
16 16 16 16
y =
1 4 9 16
4 4 9 16
9 9 9 16
16 16 16 16
|
3 | Pass |
n= 7;
y_correct =[1 4 9 16 25 36 49
4 4 9 16 25 36 49
9 9 9 16 25 36 49
16 16 16 16 25 36 49
25 25 25 25 25 36 49
36 36 36 36 36 36 49
49 49 49 49 49 49 49]
assert(isequal(mat(n),y_correct))
y_correct =
1 4 9 16 25 36 49
4 4 9 16 25 36 49
9 9 9 16 25 36 49
16 16 16 16 25 36 49
25 25 25 25 25 36 49
36 36 36 36 36 36 49
49 49 49 49 49 49 49
y =
1 4 9 16 25 36 49
4 4 9 16 25 36 49
9 9 9 16 25 36 49
16 16 16 16 25 36 49
25 25 25 25 25 36 49
36 36 36 36 36 36 49
49 49 49 49 49 49 49
|
Permute diagonal and antidiagonal
179 Solvers
Find the dimensions of a matrix
267 Solvers
Flip the vector from right to left
742 Solvers
102 Solvers
201 Solvers