Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
cstr = {' Trim leading white-space';
'Trim trailing white-space '};
y_correct = {'Trim leading white-space';'Trim trailing white-space'};
assert(isequal(white_space_remove(cstr),y_correct))
ans =
'Trim leading white-space'
'Trim trailing white-space'
|
2 | Pass |
%%
NL = char(0);
TAB = char(9);
x = [NL 32 TAB NL 'AB' 32 NL 'CD' NL 32 TAB NL 32];
y_correct = [NL 32 TAB NL 'AB' 32 NL 'CD' NL 32 TAB NL];
assert(isequal(white_space_remove(x),y_correct))
ans =
AB CD
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13048 Solvers
Return the 3n+1 sequence for n
6167 Solvers
1421 Solvers
351 Solvers
2981 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!