get the name of variable
2 ビュー (過去 30 日間)
古いコメントを表示
I have two variables, myData and x. at some point I want to use the name of vriable assigned to x, i.e. myData. I wonder how i can get it? I apperciate your help.
myData=[1 2 3];
x=myData;
%now I want to get the name of vavriable assigned to x
myText=x >>>>myText='myData'
0 件のコメント
回答 (1 件)
Paulo Silva
2011 年 6 月 12 日
No variable was assigned to x, the code x=myData; just copies the contents of the variable myData to the variable x, you are the one that knows the name of the variable on your code so save it to use later
myData=[1 2 3];
x=myData;
xGotValOf='myData';
myText=x >>>>myText=xGotValOf;
2 件のコメント
Jan
2011 年 6 月 12 日
@Hassan: It is worth to mention, that Paulo Silva is not called Paula Silvo, Pilva Saulo, Pausi Lolva or Pava Silulo. He is Paulo. ;-)
参考
カテゴリ
Help Center および File Exchange で Workspace Variables and MAT-Files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!