Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = string({'I','love','MATLAB'});
y_correct = {'I','love','MATLAB'};
assert(isequal(str2cell(x),y_correct))
y =
1×3 cell array
{'I'} {'love'} {'MATLAB'}
|
2 | Pass |
x = string({'I','love'}); x(5) = 'MATLAB';
y_correct = {'I','love','','','MATLAB'};
assert(isequal(str2cell(x),y_correct))
y =
1×5 cell array
{'I'} {'love'} {0×0 char} {0×0 char} {'MATLAB'}
|
3 | Pass |
x = string([1 NaN 2]);
y_correct = {'1','','2'};
assert(isequal(str2cell(x),y_correct))
y =
1×3 cell array
{'1'} {0×0 char} {'2'}
|
4 | Pass |
x = strings(3);
x(1) = 'first';
x(end) = 'last';
y_correct = {'first', '', ''
'', '', ''
'', '', 'last'};
assert(isequal(str2cell(x),y_correct))
y =
3×3 cell array
{'first' } {0×0 char} {0×0 char}
{0×0 char} {0×0 char} {0×0 char}
{0×0 char} {0×0 char} {'last' }
|
5833 Solvers
325 Solvers
Sum of first n terms of a harmonic progression
257 Solvers
Remove the two elements next to NaN value
411 Solvers
Given a square and a circle, please decide whether the square covers more area.
351 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!