Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = {'I','love','MATLAB'};
y_correct = strings(size(x));
[y_correct{:}] = x{:};
assert(isequal(cell2str(x),y_correct))
|
2 | Pass |
x = {'I', 'love', 'MATLAB'
'I', 'love', 'Cody'};
y_correct = strings(size(x));
[y_correct{:}] = x{:};
assert(isequal(cell2str(x),y_correct))
|
Remove any row in which a NaN appears
6826 Solvers
Sort a list of complex numbers based on far they are from the origin.
4326 Solvers
6280 Solvers
436 Solvers
345 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!