How to call a Variable from a List Dialog Box
Show older comments
Hey everyone,
Im trying to get the values out of a variable which I have defined already but I don't call them unless I select it from a list.
Var1 = [10, 5, -1, 2, 3]
Var2 = [5, 6, 7, 8]
... etc
List = {'Var1','Var2'};
[indx] = listdlg('ListString',List,'SelectionMode','Single')
% Selected the variable from list
VarChosen = List{indx}
%VarChosen = 'Var1'
So here when I select it i get a Char of 'Var1'
What I need is the values of Var 1 so that
Var1_A = Var1(1)
Var1_B = Var1(2)
Var_1C = Var1(3)... etc
I think i'm just missing a way for the Character Array to be seen as the variable for it to call.. I don't know.
Any help would be appreciated.
Accepted Answer
More Answers (0)
Categories
Find more on Phased Array System Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!