Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = magic(3);x(2,[1 3])= NaN;
y_correct = [8 1 6;4 9 2];
assert(isequal(removeNaN(x),y_correct))
c =
2
2
z =
1
3
x =
8 1 6
4 9 2
y =
8 1 6
4 9 2
|
2 | Pass |
x = [magic(4) ones(4,1)];
x(4,5) = NaN;x(3,2) = Inf;x(3,1)=NaN;
y_correct = x(1:2,:);
assert(isequal(removeNaN(x),y_correct))
c =
3
4
z =
1
5
x =
16 2 3 13 1
5 11 10 8 1
y =
16 2 3 13 1
5 11 10 8 1
|
3 | Pass |
x = ones(4);x(3,3)=NaN;
y_correct = ones(3,4);
assert(isequal(removeNaN(x),y_correct))
c =
3
z =
3
x =
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
|
4 | Pass |
x = [1; NaN];
y_correct = [1];
assert(isequal(removeNaN(x),y_correct))
c =
2
z =
1
x =
1
y =
1
|
5 | Pass |
x = NaN;
assert(isempty(removeNaN(x)))
c =
1
z =
1
x =
0×1 empty double column vector
y =
0×1 empty double column vector
|
6 | Pass |
x = [1:10 NaN];
assert(isempty(removeNaN(x)))
c =
1
z =
11
x =
0×11 empty double matrix
y =
0×11 empty double matrix
|
7 | Pass |
x = [1:10 NaN]';
y_correct = [1:10]';
assert(isequal(removeNaN(x),y_correct))
c =
11
z =
1
x =
1
2
3
4
5
6
7
8
9
10
y =
1
2
3
4
5
6
7
8
9
10
|
Make one big string out of two smaller strings
1149 Solvers
Duplicate each element of a vector.
518 Solvers
450 Solvers
274 Solvers
373 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!