How can I apply a command [select a section of data] to all the variables and structures in my workspace?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I thought of using logical operators but don't really know how to do it. Cheers!
1 Kommentar
Antworten (1)
Massimo Zanetti
am 7 Okt. 2016
Generally you can list them by command who and then evaluating a functional expression by eval.
For example assume you have x=[3,6] in workspace, then to get the mean:
C=who;
h=eval(['mean(',C{1},');']);
m=4.5
0 Kommentare
Siehe auch
Kategorien
Mehr zu Variables 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!