Problem 552. Cell Array Inception?
Jimmy is a beginning MATLAB student who is trying to read in a text file and build a cell array of strings, where A{k} is the kth line of the text file. He writes the following code, and is confused when it doesn't work:
fid = fopen('myfile.txt','r'); A = {}; while ~feof(fid) A = {A fgetl(fid)}; end
What he finds is that after the loop, A only has two components, no matter what the file length. The second component is the last line of the file, and the first component is another cell array! He then realizes that A{1} also has two components, where the second component is the second-last line of the file and the first component is yet another cell array!
Your task: write a function to undo this "cell-array Inception" and return the proper cell array of strings that Jimmy is looking for. Implement B = unInception(A), where A is the cell array as returned by Jimmy's code.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers29
Suggested Problems
-
Nonuniform quantizer as a piecewise constant function
55 Solvers
-
690 Solvers
-
Split a string into chunks of specified length
1870 Solvers
-
The Answer to Life, the Universe, and Everything
541 Solvers
-
14308 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!