You are given a String that is equivalent to a cell array of scalars or vectors. Transform this String to its equivalent Cell array. We assume the input string contains only scalars or vectors of double.
for example, this input String
'{1,2,[3 6],4}'
Should produce this output:
1×4 cell array
{[1]} {[2]} {1×2 double} {[4]}
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers13
Suggested Problems
-
Find the peak 3n+1 sequence value
2571 Solvers
-
"Low : High - Low : High - Turn around " -- Create a subindices vector
589 Solvers
-
824 Solvers
-
return row and column indices given 2 values which define a range
78 Solvers
-
Rounding off numbers to n decimals
5748 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Test suite has been updated to include double and triple digits numbers, to make it more challenging.