Getting the average and then the standard deviation of multiple .mat files

19 views (last 30 days)
Hi all,
Slightly over my head here and need some help! I am trying to get the average of several .mat files, each being 8x22 workspaces of data (see the screenshots for more information). My code is below but despite my efforts, I have no idea how to get the average of each file as well as their standard deveation. As you can see, I have loaded them all through the following process but have gotten stuck with the averaging part for now. Could anyone help?
myFolder = '/Users/ben/Desktop/Stats part/Data'; % Define your working folder
if ~isdir(myFolder)
errorMessage = sprintf('Error: The following folder does not exist:\n%s', myFolder);
uiwait(warndlg(errorMessage));
return;
end
filePattern = fullfile(myFolder, '*.mat');
matFiles = dir(filePattern);
for k = 1:length(matFiles)
baseFileName = matFiles(k).name;
fullFileName = fullfile(myFolder, baseFileName);
fprintf(1, 'Now reading %s\n', fullFileName);
matData(k) = load(fullFileName);
end
% the loaded data is in the workspace called matData.
Z = rand(1,16,16);
Z_m = mean(A(1:20,:,:));
Thanks in advance!!
  2 Comments
Stephen23
Stephen23 on 29 Apr 2020
Edited: Stephen23 on 29 Apr 2020
"see the screenshots for more information"
You forgot to attach any files.
"each being 8x22 workspaces of data"
Do all of the .mat files contain the same variables? Which of these variables do you want to work with?
Ben Timm
Ben Timm on 29 Apr 2020
Ahh! That was a rookie error, my bad!
All of the .mat files have different numbers in them but aside from that, they are of the same format and do not change at all from what is seen in the screenshots.
Thanks again!

Sign in to comment.

Accepted Answer

Vinai Datta Thatiparthi
Vinai Datta Thatiparthi on 1 May 2020
Hey Ben,
From your description, I understood that you're trying to evaluate the mean and standard deviation values for each of the 16 matrix values that you have inside your struct matData. So, your output results would be 16 values for mean & 16 more for standard deviation.
If that's the case,
% Number of elements within the structure matData
len = numel(fieldnames(matData));
% Array to store average of every matrix
meanArr = zeros(1, len);
% Array to store standard deviation of every matrix
stdArr = zeros(1, len);
% Iterate through every element (matrix) within matData to calculate mean & std
for idx = 1:len
data = matData(idx).average_final_results;
% Store into array
meanArr(idx) = mean(data,'all');
stdArr(idx) = std(data, 0, 'all');
end
Documentation links for mean & std.
Note: Since you've not mentioned what exactly you're calculating std for, I've gone ahead and assumed a simple case and calculated for the entire matrix.
Hope this helps!
  5 Comments
Vinai Datta Thatiparthi
Vinai Datta Thatiparthi on 6 May 2020
Hey Ben,
I guess using normplot on the variable data is what you're looking for. Since you wanted to check if each individual group was normally distributed, maybe you could use normplot iteratively within the for loop itself.
Hope this helps!
Ben Timm
Ben Timm on 7 May 2020
Hi Vinai,
Thank you so much for the help! It is incredibly appreciated.
Kind regards,
Ben

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!