What is the difference between string arrays and cell arrays of character vectors?
79 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Chris Volpe
el 24 de Abr. de 2017
Comentada: Walter Roberson
el 23 de Mayo de 2019
R2016b allows you to create string arrays, and R2017A allows you to use the double-quote syntax for specifying string literals. What is the practical difference between a string array (e.g ["one", "two"]) and a cell array of character vectors (e.g. {'one', 'two'}). Aside from minor conveniences like "strlength" (which could easily have been implemented to operate on cell arrays of character vectors), why should I care about this? Am I missing something?
3 comentarios
Walter Roberson
el 25 de Abr. de 2017
Is there any non-numeric data structure that could not be implemented as a struct and then adding functions to the language ?
Respuesta aceptada
Jurgen vL
el 20 de Mayo de 2019
Editada: Jurgen vL
el 21 de Mayo de 2019
I'd like to add that for loops can become cleaner, instead of cellarray{idx} you can use idx directly. E.g. when displaying messages or iterating over struct fields.
for field = string(fieldnames(S)')
S.(field) = somevalue;
end
% I haven't figured out why this only works with horizontal arrays
In addition, cellfun typically requires the annoying argument 'UniformOutput' flag to be false when a function returns a character array. If a function that returns a char array is changed to return a scalar string this would clean things up too, e.g.:
[~, patientID] = cellfun(@fileparts,{cohort.pfolder})
%no need for UniformOutput if fileparts() is modernized to return strings.
3 comentarios
Rik
el 20 de Mayo de 2019
I vaguely remember a question a year (or two?) ago where this quirk was actually helpful (by allowing rows of the object array to be processed). If I recall correctly that was in the context of parfor. I can't find it in the parfor doc, but I seem to recall parfor doesn't process your array of objects the same as for. I don't have the parallel computing toolbox, so I can only test the fallback implementation of parfor.
</ramble>
Walter Roberson
el 23 de Mayo de 2019
I have occasionally made use of the fact that for processes by columns. It seldom provides additional clarity, though.
What I have sometimes wanted is to loop over cell entries without having to do a specific de-reference.
Más respuestas (2)
Steven Lord
el 25 de Abr. de 2017
You may find today's post from Loren's blog interesting and informative. If you have questions or feedback, as Dave wrote, "Expect to hear more from me on this topic. And please share your input with us by leaving a comment below. We're interested to hear from you."
0 comentarios
Walter Roberson
el 25 de Abr. de 2017
Students keep trying to use == to compare strings, and keep trying to use () to store strings. Making MATLAB easier for students is a practical difference.
Now as to whether it is faster or whether there are additional meaningful features... those are different questions ;-)
1 comentario
dpb
el 25 de Abr. de 2017
Editada: dpb
el 25 de Abr. de 2017
What about the search issue--are strfind and friends now string aware? If so, that would be a_good_thing (tm).
From the blog Steven L reference, it appears "not yet". I'd echo the sentiments of another poster there that it would be better to hold off the introduction of these new features until they're really "ready for prime time" instead of just interesting little tidbits stuck on like the candy commercial...
How are strings displayed -- do they have a double-quote around them a la the single for cell strings to differentiate their appearance?
This is a 'yes' it seems...makes sense; presumed so but curious.
Ver también
Categorías
Más información sobre Cell Arrays en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!