This solution is outdated. To rescore this solution, sign in.
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))
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))
y =
16 2 3 13 1
5 11 10 8 1
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
The Hitchhiker's Guide to MATLAB
2874 Solvers
235 Solvers
07 - Common functions and indexing 3
317 Solvers
315 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!