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
|
623 Solvers
163 Solvers
284 Solvers
Set some matrix elements to zero
290 Solvers
320 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!