Difference between 'cell' and 'string'
Show older comments
I readtable two csv files that both includes months (January, February,...). In one file, they are string. In the other file, they are cell. Will it be better to have these name of the months as string or as cell?
Accepted Answer
More Answers (1)
Image Analyst
on 7 Dec 2020
0 votes
In addition to what the others have said, see the FAQ for a good intuitive description of what a cell array is.
Your CSV file will not be strings in one and cells in the other CSV file. They are just regular, normal flat text files. Strings, character arrays, and cell arrays are a concept internal to MATLAB and your flat text CSV files have no idea about that. Whether they end up as
- a cell array of character arrays, or
- an array of strings
inside MATLAB depends entirely on how (what function) you use to read them into MATLAB. readtable() will make them whatever data type it decides to make them, and just use them like that. I don't see any need to change what readtable() decided to do.
Categories
Find more on Tables in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!