Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
names_in = {'bert','arthur','Bert','Fred'};
names_out = {'bert','arthur','Fred'};
assert(isequal(clean_list(names_in),names_out))
arr =
1×3 cell array
{'bert'} {'arthur'} {'fred'}
idx =
1
2
4
names_out =
1×3 cell array
{'bert'} {'arthur'} {'Fred'}
|
2 | Pass |
names_in = {'bert','bill','billy','Bill'};
names_out = {'bert','bill','billy'};
assert(isequal(clean_list(names_in),names_out))
arr =
1×3 cell array
{'bert'} {'bill'} {'billy'}
idx =
1
2
3
names_out =
1×3 cell array
{'bert'} {'bill'} {'billy'}
|
3 | Pass |
names_in = {'George','Bernard','Shaw','shaw','Bernie','george'};
names_out = {'George','Bernard','Shaw','Bernie'};
assert(isequal(clean_list(names_in),names_out))
arr =
1×4 cell array
{'george'} {'bernard'} {'shaw'} {'bernie'}
idx =
1
2
3
5
names_out =
1×4 cell array
{'George'} {'Bernard'} {'Shaw'} {'Bernie'}
|
4 | Pass |
names_in = {'aaa','aAa','aAA','bbB','bbb','ccc'};
names_out = {'aaa','bbB','ccc'};
assert(isequal(clean_list(names_in),names_out))
arr =
1×3 cell array
{'aaa'} {'bbb'} {'ccc'}
idx =
1
4
6
names_out =
1×3 cell array
{'aaa'} {'bbB'} {'ccc'}
|
5 | Pass |
names_in = {'one','two','three'};
names_out = {'one','two','three'};
assert(isequal(clean_list(names_in),names_out))
arr =
1×3 cell array
{'one'} {'two'} {'three'}
idx =
1
2
3
names_out =
1×3 cell array
{'one'} {'two'} {'three'}
|
Remove any row in which a NaN appears
6827 Solvers
5833 Solvers
835 Solvers
386 Solvers
546 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!