Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = {'I','love','MATLAB'};
y_correct = string({'I','love','MATLAB'});
assert(isequal(cell2str(x),y_correct))
|
2 | Pass |
x = {'I', '', '', 'MATLAB'};
y_correct = string('I'); y_correct(4) = 'MATLAB';
assert(isequaln(cell2str(x),y_correct))
|
3 | Pass |
x = {'I', '', 'MATLAB'
'', 'love', 'MATLAB'
'I', 'love', '' };
y_correct = [string('I'), string(NaN), string('MATLAB')
string(NaN), string('love'), string('MATLAB')
string('I'), string('love'), string(NaN) ];
assert(isequaln(cell2str(x),y_correct))
|
Find relatively common elements in matrix rows
645 Solvers
Sum all integers from 1 to 2^n
6328 Solvers
276 Solvers
Generate N equally spaced intervals between -L and L
441 Solvers
228 Solvers