Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1];
y_correct = 1;
assert(isequalwithequalnans(your_fcn_name(x),y_correct))
x =
1
|
2 | Pass |
%%
x = [1 NaN 3 4 5 56];
y_correct = NaN;
assert(isequalwithequalnans(your_fcn_name(x),y_correct))
ans =
NaN
|
Select every other element of a vector
20334 Solvers
Back to basics 22 - Rotate a matrix
763 Solvers
464 Solvers
Rounding off numbers to n decimals
1050 Solvers
236 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!