Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 3; 4 5 6; 7 8 9]
y_correct = 5;
assert(isequal(MeanCorner(x),y_correct))
x =
1 2 3
4 5 6
7 8 9
ans =
5
|
2 | Pass |
%%
x = magic(4)
y_correct = 8.5;
assert(isequal(MeanCorner(x),y_correct))
x =
16 2 3 13
5 11 10 8
9 7 6 12
4 14 15 1
ans =
8.5000
|
3 | Pass |
%%
x = eye(4)
y_correct = 0.5;
assert(isequal(MeanCorner(x),y_correct))
x =
1 0 0 0
0 1 0 0
0 0 1 0
0 0 0 1
ans =
0.5000
|
4 | Pass |
%%
x = repmat(5, 4,4);
y_correct = 5;
assert(isequal(MeanCorner(x),y_correct))
ans =
5
|
5 | Pass |
%%
x = [1:10];
y_correct = 5.5;
assert(isequal(MeanCorner(x),y_correct))
ans =
5.5000
|
Create a cell array out of a struct
507 Solvers
Return elements unique to either input
550 Solvers
Convert a vector into a number
503 Solvers
203 Solvers
Is this triangle right-angled?
2874 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!