Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x=[4 11 8; 9 2 7];
y_correct = (11+9+7)/3;
assert(isequal(ave_odd(x),y_correct))
y =
4
9
11
2
8
7
y =
9
11
7
y =
9
|
2 | Pass |
x=[1:9;1:9;9:-1:1];
y_correct =(1+3+5+7+9)/5;
assert(isequal(ave_odd(x),y_correct))
y =
1
1
9
2
2
8
3
3
7
4
4
6
5
5
5
6
6
4
7
7
3
8
8
2
9
9
1
y =
1
1
9
3
3
7
5
5
5
7
7
3
9
9
1
y =
5
|
3 | Pass |
x=repmat([7 0 1],2,2);
y_correct=4;
assert(isequal(ave_odd(x),y_correct))
y =
7
7
0
0
1
1
7
7
0
0
1
1
y =
7
7
1
1
7
7
1
1
y =
4
|
4 | Pass |
x=ones(1,19);
y_correct=1;
assert(isequal(ave_odd(x),y_correct))
y =
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
y =
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
y =
1
|
Find the sum of the elements in the "second" diagonal
994 Solvers
Compute a dot product of two vectors x and y
750 Solvers
convert matrix to single column
306 Solvers
Matlab Basics - Set unwanted parts of a vector to zero
197 Solvers
323 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!