How to take the average of the columns of a matrix and insert into another matrix

1 次查看(过去 30 天)
I have a piece of code that reads a .txt file with several matrices and sorts them into cell arrays. Each of the matrices has always three columns with varying rows. My question would be how i can take the average of each column from these matrices separately and put it into another matrix with these averages, so that it would be a new matrix containing 3 columns, each column with the average of the column of the original matrix, and with the number of rows like the number of matrices on the .txt file. Here the code that reads the .txt file and indexed is the .txt file.
filepath = '/Users/...';
fileID = fopen(filepath);
nGroups = 0;
stationGroups = cell(0,1);
while true
nStations = fgets(fileID);
if ~ischar(nStations)
break;
end
nGroups = nGroups + 1;
nStations = str2num(nStations);
stationMatrix = zeros(nStations,3);
for currentStation = 1:nStations
fprintf('Loading station %d of station group %d: ', ...
currentStation, nGroups);
testStation = fgets(fileID);
if ~ischar(testStation)
error('Error - file ended too early!');
end
testStation = str2num(testStation);
if numel(testStation)~=3
error('Error - Station %d didn''t have three values!', ...
currentStation);
end
fprintf('%.2f ',testStation);
fprintf('\n');
stationMatrix(currentStation,:) = testStation;
end
stationGroups{end+1} = stationMatrix;
nGroups = length(stationGroups);
end
fclose(fileID);
  2 个评论
dpb
dpb 2018-7-2
Is the attached file the input file being parsed, I guess, and you want the means of the groups within that file as records in a new file or an array in memory?
Feliciano Döring
The file contains all the matrices and the programs separates all of them in cell arrays. i want the means from the three columns of each matrix separately and to put it on a new cell array. Hope it helps to understand, i didn't quite get your question

请先登录,再进行评论。

采纳的回答

dpb
dpb 2018-7-2
fid=fopen('file.txt');
mn=[];
while ~feof(fid)
n=fscanf(fid,'%d',1)
if isempty(n),break,end
d=cell2mat(textscan(fid,'%f%f%f',n,'collectoutput',1));
mn=[mn;mean(d)];
end
fid=fclose(fid);
While the above does dynamic reallocation for "growing" the mn array, unless and until the number of rows in the file gets to be quite large the time required is likely not going to be noticeable. If does, then preallocate mn for a large number of rows and increment a counter and fill in; remembering to check for overflow, of course.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by