Is there a quick way to create a cell array of strings where strings represent workspace variables?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Aniket Vagha
am 18 Mär. 2015
Bearbeitet: Stephen23
am 18 Mär. 2015
I want to create a cell array of strings, where the strings represent workspace variables. Suppose I have a,bb,ccc,dddd ... z26, and so on as variables in the workspace. How can I create a cell array
vars = {... 'a' 'bb' 'ccc' . . . . 'z26' };
I have tried using who with asterix to list variables, or copying in excel and inserting columns of inverted quotations, etc. Any help greatly appreciated!
0 Kommentare
Akzeptierte Antwort
Stephen23
am 18 Mär. 2015
Bearbeitet: Stephen23
am 18 Mär. 2015
If you read the documentation for whos then you will find out that you can use wildcard matches like this:
whos('a*')
which matches all variables starting with the letter 'a'. To get a cell array of names without using a loop:
N = whos('a*');
N = {N.name};
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Whos finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!