Convert a cell-array of values to MATLAB source code - MATLAB Cody - MATLAB Central

Problem 1392. Convert a cell-array of values to MATLAB source code

Difficulty:Rate
The MATLAB interpreter loads your code and executes it using the Read-Evaluate-Print-Loop (see REPL).
In this problem you will go the opposite way; given an in-memory MATLAB cell-array can you convert it to legal MATLAB code?
i.e. if you have the cell array,
x={{'MLB',{'Red Sox','Yankees'},{'Rangers','Cardinals'}},{'NFL',{'Cowboys','Giants'},{'Patriots','49ers','Ravens'}}}
write a function that returns the string,
y = '{{''MLB'', {''Red Sox'', ''Yankees''}, {''Rangers'', ''Cardinals''}}, {''NFL'', {''Cowboys'', ''Giants''}, {''Patriots'', ''49ers'', ''Ravens''}}};'
which on 'eval(y)' can reconstruct x.
Also specialize to handle multiple levels of cell-arrays, and mixed string/double types.

Solution Stats

56.52% Correct | 43.48% Incorrect
Last Solution submitted on Oct 18, 2023

Problem Comments

Solution Comments

Show comments
PIVlab surpasses 100K all-time File Exchange downloads
During the past twelve months, PIVlab, a MATLAB Community Toolbox for particle...
4
8
LLMs with MATLAB updated to support the latest OpenAI Models
Large Languge model with MATLAB, a free add-on that lets you access...
2
4

Problem Recent Solvers10

Suggested Problems

More from this Author10

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!