Difference between ' (single quote) vs " (double quote)?
829 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
When used in an fprintf or disp function, what is the difference between using only ' (single quote) vs using " (double quote)? Does fprintf and disp make a difference also regarding when using ' or " ? Thank you.
Réponse acceptée
Stephen23
le 15 Oct 2019
Modifié(e) : Stephen23
le 15 Oct 2019
In a nutshell:
- single quotes define a character vector with size 1xN, where N is the number of characters between the quotes.
- double quotes define a string array with size 1x1 (i.e. scalar, regardless of how many characters it has). You can think of string arrays as a kind of container for character vectors.
String arrays have some advantages, such as it is possible to have text data with exactly the same dimensions as corresponding numeric data, and there also exist many overloaded operations which perform useful implcit operations on strings. However they also require more memory, can be slower than using character vectors, and are not supported on MATLAB versions prior to R2016b.
"Does fprintf and disp make a difference also regarding when using ' or ""
In many situations where a character vector can be used a string scalar is also supported: read the online documentation for the specific functions to know what inputs it accepts. Providing a string/character vector can make a difference: for example, sprintf will return an output of the same class as its formatSpec input argument.
3 commentaires
Pete Marsh
le 18 Juin 2020
I get the difference between the char vector and a string array. What is the difference between the string array and a cell array?
Thanks
Stephen23
le 18 Juin 2020
"What is the difference between the string array and a cell array?"
Well, they are both kinds of container arrays, but the similarities basically end there.
A cell array is a totally universal container that can hold any kind of array (even other cell arrays), whereas a string array specifically contains character vectors and nothing else. Because of this the string array has a bunch of methods and overloaded functions that offer convenient string manipulation:
More discussions on this topic:
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Characters and Strings dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!