How can I generate variable names automatically based on my data?

조회 수: 9 (최근 30일)
I want to create multiple variables to the Workspace such as: 'x1', 'x2', 'x3', ... and so on depending on how long my data is.
How can I do this in MATLAB?

채택된 답변

MathWorks Support Team
MathWorks Support Team 2018년 7월 11일
You can use the "assignin" function in a for loop to do this:
>> for i = 1:5
>> assignin('base',strcat('x',num2str(i)),i);
>> end
  댓글 수: 1
Stephen23
Stephen23 2018년 7월 30일
The assignin help states "Assigning to variables in the caller workspace can make code more difficult to understand, give surprising results to the user (unexpected or redefined variables in their workspace), and have a negative performance impact. The best practice is to have the function return the variables as output arguments."-
The Share Data Between Workspaces page states "Like global variables, these functions carry risks of overwriting existing data. Use them sparingly.... For other programming applications, consider argument passing and the techniques described in Alternatives to the eval Function."

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Whos에 대해 자세히 알아보기

제품


릴리스

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by