# Single quote vs double quote strings

There are two types of storage for text data in MathJSLab: character arrays and
string arrays. Character arrays are represented using single quotes and string
arrays are represented using double quotes.

- 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.

https://www.mathworks.com/help/matlab/characters-and-strings.html
https://www.mathworks.com/help/matlab/matlab_prog/represent-text-with-character-and-string-arrays.html
https://www.mathworks.com/help/matlab/matlab_prog/create-string-arrays.html
https://www.mathworks.com/help/matlab/matlab_prog/frequently-asked-questions-about-string-arrays.html
https://www.mathworks.com/matlabcentral/answers/485385-difference-between-single-quote-vs-double-quote
https://stackoverflow.com/questions/52347114/in-matlab-what-is-the-difference-between-single-quote-and-double-quote
https://docs.octave.org/latest/String-Objects.html
https://docs.octave.org/latest/Strings.html
https://docs.octave.org/latest/Escape-Sequences-in-String-Constants.html
