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))
nn =
2
2
n =
1
3
x =
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))
nn =
3
4
n =
1
5
x =
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))
nn =
3
n =
3
x =
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))
nn =
2
n =
1
x =
1
|
5 | Pass |
x = NaN;
assert(isempty(removeNaN(x)))
nn =
1
n =
1
x =
0×1 empty double column vector
|
6 | Pass |
x = [1:10 NaN];
assert(isempty(removeNaN(x)))
nn =
1
n =
11
x =
0×11 empty double matrix
|
7 | Pass |
x = [1:10 NaN]';
y_correct = [1:10]';
assert(isequal(removeNaN(x),y_correct))
nn =
11
n =
1
x =
1
2
3
4
5
6
7
8
9
10
|
Find the alphabetic word product
2322 Solvers
The Goldbach Conjecture, Part 2
1285 Solvers
188 Solvers
Fahrenheit to Celsius converter
358 Solvers
257 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!