필터 지우기
필터 지우기

maximum value in each column

조회 수: 3 (최근 30일)
alireza bakhshaee
alireza bakhshaee 2018년 4월 10일
답변: Bob Thompson 2018년 4월 10일
Hi all, I have 28 text files. each text file has 11 columns. I have to skip first 3 lines of each text file then read them. 1-How can I find the maximum number of each column in each text files? 2-how can I find the most maximum number of each column in the previous question in 28 files?

답변 (1개)

Bob Thompson
Bob Thompson 2018년 4월 10일
There is a function for finding maximums, max(), which finds the maximum value of a specified region. All you need to do is index the function to see each column and then run a for loop.
for k = 1:size(filelist); % Run through each file
for j = 1:size(filedata,2); % Run through each column of a given file
datamaxes(k,j) = max(filedata(:,j)); % Find max of column and store data
end
end
for j = 1:size(datamaxes,2); % Run through each column again for maximax value
maximax(j) = max(datamaxes(:,j)); % Find max value of given column for all files
end

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by