My MATLAB (2011a) doesn't allow the use of 'stable' as an option. Is this a very new addition?
yes it's new in r2012a
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))
|
2 | Pass |
%%
names_in = {'bert','bill','billy','Bill'};
names_out = {'bert','bill','billy'};
assert(isequal(clean_list(names_in),names_out))
|
3 | Pass |
%%
names_in = {'George','Bernard','Shaw','shaw','Bernie','george'};
names_out = {'George','Bernard','Shaw','Bernie'};
assert(isequal(clean_list(names_in),names_out))
|
4 | Pass |
%%
names_in = {'aaa','aAa','aAA','bbB','bbb','ccc'};
names_out = {'aaa','bbB','ccc'};
assert(isequal(clean_list(names_in),names_out))
|
5 | Pass |
%%
names_in = {'one','two','three'};
names_out = {'one','two','three'};
assert(isequal(clean_list(names_in),names_out))
|
2240 Solvers
Getting the row and column location from a matrix
236 Solvers
669 Solvers
Replace multiples of 5 with NaN
358 Solvers
Given a 4x4 matrix, swap the two middle columns
516 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!