naming variables

4 views (last 30 days)
Hassan
Hassan on 9 Jun 2011
I have a text file, s, and I have a varaible, Var1. I wonder how I can chane the name of Var1 using the content of the text variable s? (I'm not sure if I expressed the question clearly). Could you please help me about that?
s='myData'
Var1=[1 2 3]

Accepted Answer

Paulo Silva
Paulo Silva on 9 Jun 2011
s='myData'
Var1=[1 2 3]
assignin('base',s,Var1)
  1 Comment
Hassan
Hassan on 9 Jun 2011
thanks a lot Paulo.

Sign in to comment.

More Answers (0)

Categories

Find more on Data Import and Export in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!