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))
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))
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))
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))
x =
1
y =
1
|
5 | Pass |
x = NaN;
assert(isempty(removeNaN(x)))
x =
0×1 empty double column vector
y =
0×1 empty double column vector
|
6 | Pass |
x = [1:10 NaN];
assert(isempty(removeNaN(x)))
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))
x =
1
2
3
4
5
6
7
8
9
10
y =
1
2
3
4
5
6
7
8
9
10
|
1836 Solvers
Project Euler: Problem 6, Natural numbers, squares and sums.
1018 Solvers
Back to basics 4 - Search Path
321 Solvers
Implement simple rotation cypher
943 Solvers
249 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!