dynamic matrix with changing variable name in for loop

조회 수: 5 (최근 30일)
Birsen Ayaz-Maierhafer
Birsen Ayaz-Maierhafer 2022년 9월 20일
편집: Stephen23 2022년 9월 21일
Hi,
I want to rename each matrix in a loop. There are two variable 'mat" and "ser". I tried the code below. Did not work. Any recommendations? Thank you
E_list=[ 1.2E-4, 1.2E-3, 1.2E-2, 1.2E-1, 1, 10, 100]
mat='Glass'
ser=24
for i=1:size(E_list)-1
..... Some calculations to get objective and popt below
......
([mat,'_parameters_',num2str(ser)])(i,1)=E_list(i)
([mat,'_parameters_',num2str(ser)])(i,2))=objective(popt)
([mat,'_parameters_',num2str(ser)])(i,3:6))=popt % Parameters
end
  댓글 수: 1
Stephen23
Stephen23 2022년 9월 21일
편집: Stephen23 2022년 9월 21일
Forcing numbers (e.g. "ser") into variable names is a sign that you are doing something wrong.
Forcing meta-data (e.g. "Glass") into variable names is a sign that you are doing something wrong.
Meta-data is data, and data belongs in variables, not in variable names.
MATLAB is designed to work simply and efficiently using indexing. You should use indexing.

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

답변 (1개)

James Tursa
James Tursa 2022년 9월 20일
Do not dynamically name variables. This is bad programming practice and will leave you with hard-to-use variables downstream in your code. Instead, use cell arrays or struct arrays etc. See this link for more discussion:

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by