Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 NaN ; 4 NaN 6];
y_correct = 1;
assert(isequal(CheckData(x),y_correct))
|
2 | Pass |
x = [0 NaN 53;NaN NaN 77;NaN NaN NaN;56 60 84];
y_correct = 0;
assert(isequal(CheckData(x),y_correct))
|
3 | Pass |
x = [31 NaN 41;NaN NaN 55;NaN NaN 12];
y_correct = 0;
assert(isequal(CheckData(x),y_correct))
|
How to find the position of an element in a vector without using the find function
2477 Solvers
413 Solvers
314 Solvers
07 - Common functions and indexing 5
314 Solvers
186 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!