필터 지우기
필터 지우기

How can I loop my CSV reader?

조회 수: 6 (최근 30일)
onamaewa
onamaewa 2018년 11월 9일
댓글: Walter Roberson 2018년 11월 10일
My files are in 1 folder which I set in Matlab as my Current Folder. The names are: g1, g2, g3, g4, g5, g6, and so on...
Currently, I'm importing using the code below.
h1 = csvread('g1.csv', 9, 0, [9, 0, 10008, 8]);
h2 = csvread('g2.csv', 9, 0, [9, 0, 10008, 8]);
h3 = csvread('g3.csv', 9, 0, [9, 0, 10008, 8]);
h4 = csvread('g4.csv', 9, 0, [9, 0, 10008, 8]);
h5 = csvread('g5.csv', 9, 0, [9, 0, 10008, 8]);
h6 = csvread('g6.csv', 9, 0, [9, 0, 10008, 8]);...
It works, but I know there has to be a way to loop this function. Any ideas on a simple for-loop to complete this task?
  댓글 수: 1
onamaewa
onamaewa 2018년 11월 10일
I'm trying to do something like this.
for (i = 1:10)
csvread('g(i).csv', 9, 0, [9, 0, 10008, 8])
end

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

답변 (1개)

Image Analyst
Image Analyst 2018년 11월 9일
There are two ways there depending on what order you want to sort them in and if any files are missing.
  댓글 수: 2
onamaewa
onamaewa 2018년 11월 10일
I read the link, but can't follow. I'd like to do something like this:
for (i = 1:10)
csvread('g(i).csv', 9, 0, [9, 0, 10008, 8])
end
Walter Roberson
Walter Roberson 2018년 11월 10일
Well you can't. You have to use techniques such as are described at the link that was posted.
for (i = 1:10)
csvread( sprintf('g(%d).csv', i), 9, 0, [9, 0, 10008, 8])
end

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

카테고리

Help CenterFile Exchange에서 Data Import and Export에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by