Entering a whole word into an arary.
Afficher commentaires plus anciens
Hello I just have a simple question. I'm working on a project that calculates the resistor value when the user enters a five color code. I cannot figure out how to put each word as a single element in an array. so if I enter the code as a single string: blue black green red orange, I would like to make a(1)=blue, a(2)=black, etc..
Thanks in advance!
Réponse acceptée
Plus de réponses (4)
Azzi Abdelmalek
le 5 Nov 2012
Modifié(e) : Azzi Abdelmalek
le 5 Nov 2012
a={'blue' , 'red', 'green'}
a(1)
a(2)
%or
a=struct('color',{'red','blue','green'})
a(1).color
a(2).color
10 commentaires
Walter Roberson
le 5 Nov 2012
No, then a(1) would be the cell array {'blue'} instead of the string 'blue'
Azzi Abdelmalek
le 5 Nov 2012
Modifié(e) : Azzi Abdelmalek
le 5 Nov 2012
for the first code : use a{1} instead of a(1)
Mark Grano
le 5 Nov 2012
Azzi Abdelmalek
le 5 Nov 2012
what do you mean?
Mark Grano
le 6 Nov 2012
Azzi Abdelmalek
le 6 Nov 2012
Modifié(e) : Azzi Abdelmalek
le 6 Nov 2012
a={'blue' , 'red', 'green'}
idx = listdlg('PromptString','Select a color:',...
'SelectionMode','single','ListString',a)
color=a{idx}
Mark Grano
le 8 Nov 2012
Walter Roberson
le 8 Nov 2012
You would have to edit listdlg() so much it became unrecognizable.
Instead, create three uicontrol() of style 'listbox'.
Mark Grano
le 9 Nov 2012
Walter Roberson
le 9 Nov 2012
You can create a figure() that you have the uicontrol() in. listdlg() creates a figure and appropriate controls for its operations; the only difference is that it is already written for you.
Walter Roberson
le 5 Nov 2012
Modifié(e) : Walter Roberson
le 5 Nov 2012
0 votes
Not possible. See http://www.mathworks.co.uk/matlabcentral/answers/52631-create-an-array-contain-no-of-string-adding-one-by-one#answer_64157 for work-around
Image Analyst
le 5 Nov 2012
>> theWords = allwords('blue black green red orange')
theWords =
'blue' 'black' 'green' 'red' 'orange'
theWords is a cell array because the words can have different lengths so it cannot be a rectangular character array.
Walter Roberson
le 6 Nov 2012
Similar to strtok() is to use regexp() with the 'split' option. After getting the input from the user (e.g., questdlg() or a uicontrol() editbox),
theWords = regexp(S, 'split');
Just as with allwords(), theWords will be a cell array.
Note that theWords(1) would be a cell array containing a string, rather than the string itself. theWords{1} would be the string.
Catégories
En savoir plus sur Data Type Conversion 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!