look for partial variable name match
17 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi,
Anyone can help me with partial variable name match? Here is the problem. I have a .mat file with multiple cases in a structure format: load file.mat variables: C1.variables C2.variables etc the name of variables have some prefixes: LCM_variable1 so it becomes: C1.LCM_variable1 I need to find variable1 from C1.LCM_variable1 in the file while the name of variables of interest are defined in a string list as inputs={'variabl1', 'variable2'} but the prefixes are not known.
Thanks
0 Commenti
Risposte (2)
Image Analyst
il 27 Giu 2012
Use fieldnames() to list the fields (members) of a structure. Then you can examine them for certain names. You might use strfind() or ismember(). If you can't figure it out, even after using the help, then write back to us.
2 Commenti
Kye Taylor
il 28 Giu 2012
Modificato: Kye Taylor
il 28 Giu 2012
I assume that by "a string arrays of names" you mean a cell, call it C, whose contents are strings. For example, something like
C = {'a string', 'another string', 'FLC_C_variable1','FLS_C_variable2_plusMore', 'FLC_C_variable3Three'};
To find strings containing the substring 'variable1', another approach in addition to those given above would be to use the command
outCell = cellfun(@(s)regexp(s,'variable1'),C,'uniform',0)
which will return a cell, outCell, that is the same size as the original cell array C. Non-empty cells in outCell contain the index of the substring 'variable1' that was found in the corresponding cell in C. (If that is confusing, run the two commands above, then let me know if I can clarify.)
You can create an array like C from a structure's fieldnames using
C = fieldnames(someStructure);
0 Commenti
Vedere anche
Categorie
Scopri di più su Characters and Strings in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!