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 |
eMat = [13 -1 5;-22 10 -87];
Ref = mean(eMat,2);
user = MyFunc();
assert(isequal(Ref,user))
eMat =
13 -1 5
-22 10 -87
y1 =
5.6667
y2 =
-33
eMean =
5.6667
-33.0000
|
2 | Pass |
Ref = [13 -1 5;-22 10 -87];
[eMean Mat] = MyFunc();
assert(isequal(Ref,Mat))
eMat =
13 -1 5
-22 10 -87
y1 =
5.6667
y2 =
-33
eMean =
5.6667
-33.0000
|
Extract leading non-zero digit
967 Solvers
Replace multiples of 5 with NaN
282 Solvers
143 Solvers
Deleting an element in a matrix
242 Solvers
183 Solvers