What is the difference between these two reading table file funciton?
Afficher commentaires plus anciens
EPL = readtable("EPLresults.csv")
another one is =
EPL = readtable("EPLresults.csv","TextType","string")
what this TextType and string are doing here?
3 commentaires
Voss
le 28 Fév 2023
TextType — Type for imported text data
'char' | 'string'
Type for imported text data, specified as the comma-separated pair consisting of 'TextType' and either 'char' or 'string'.
- 'char' — Import text data into MATLAB as character vectors.
- 'string' — Import text data into MATLAB as string arrays.
Example: 'TextType','char'
Md Jonayet
le 28 Fév 2023
Réponses (1)
Walter Roberson
le 28 Fév 2023
0 votes
If you have a particular variable (column) that contains some text, then do you want the text to be represented as a cell array of character vectors (the default) or do you want the text to be represented as a column vector of string() objects ('TextType', 'string') ? There are advantages and disadvantages to either choice.
Catégories
En savoir plus sur Text Files dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!