필터 지우기
필터 지우기

Importing and naming files in a loop

조회 수: 2 (최근 30일)
sarah Abdellahi
sarah Abdellahi 2018년 9월 25일
댓글: Stephen23 2018년 9월 25일
Friends :)
I want to import several files sequentially. In each step, I want the required data to be extracted and then stored in a variable. I have problem storing the data I know its a wrong way to write it, but to explain what I mean, here is how I would like them to load in matlab. Thank you
for i=1:65
load(['DATA_' num2str(i) '.mat'])
Test(i)_1L=(((cDA_1L_WS.DATA.*1000)-4)/0.2133.*3.6/1.608);
Test(i)_2L=(((cDA_2L_WS.DATA.*1000)-4)/0.2133.*3.6/1.608);
end
In other words, my output vectors would be like:
Test1_1L, Test1_2L, Test2_1L,Test2_2L, Test3_1L ,Test3_2L ...
  댓글 수: 1
Stephen23
Stephen23 2018년 9월 25일
As Fangjun Jiang wrote, magically changing variable names like that not recommended. Dynamically creating or accessing variable names is one way that beginners force themselves into writing slow, complex, buggy code that is hard to debug. Read this to know why:
You should use neat, simple, and very efficient indexing, exactly as Fangjun Jiang showed.

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

채택된 답변

Fangjun Jiang
Fangjun Jiang 2018년 9월 25일
Without more details, the first thing to correct is the variable name
Test(i)_1L should be Test_1L(i)
  댓글 수: 2
sarah Abdellahi
sarah Abdellahi 2018년 9월 25일
Thank you for your response.
I think I am not clear enough. "1L" is measured in several tests. I want to extract all "1L" and store them based on their associated test number. If I am not wrong, what you suggested updates L not test number in each iteration.
Fangjun Jiang
Fangjun Jiang 2018년 9월 25일
Naming your variables as Test1_1L, Test2_1L, Test3_1L, ... is a bad ideal. There are plenty of Q&As in this forum emphasizing that.
Instead, your data will be stored in the vector Test_1L. Your Test1_1L is in Test_1L(1), Test2_1L is in Test_1L(2), Test3_1L is in Test_1L(3), etc.

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

추가 답변 (0개)

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by