Getting the average and then the standard deviation of multiple .mat files
13 views (last 30 days)
Show older comments
Ben Timm
on 28 Apr 2020
Commented: Ben Timm
on 7 May 2020
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
Accepted Answer
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
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
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!
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!