How to open variables in command line?
28 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Christopher
le 10 Mar 2014
Réponse apportée : prerna kaul
le 21 Mar 2014
Is there a function that can be typed into the command window to open a variable listed in the workspace? I have many hundreds of variables generated in one of my codes and finding individual variables is a huge time waster.
0 commentaires
Réponse acceptée
Chandrasekhar
le 10 Mar 2014
use the command
openvar(variablename)
eg: if variable name is var then enter the command
openvar('var')
0 commentaires
Plus de réponses (2)
David Sanchez
le 10 Mar 2014
You can sue who:
To present all the variables:
who
To present variables whose name start by H:
who H*
To present variables ending by 1:
who *1
1 commentaire
Voir également
Catégories
En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!