Normalize matrices of different sizes

1 次查看(过去 30 天)
xiao wei
xiao wei 2020-11-5
评论: xiao wei 2020-11-11
I have different size matrix a1, a2, a3...an, size of a1= [m n1]; size of a2=[m n2]; size of a3=[m n3];...size of an=[m nn]; this means that the row number of all the matrix is the same, but their columns number is different. How could I normalize them into matrix [m n], while n is the biggest column number of all matrix? the rest of colums of other matrix should be added with zero. finally, how can I save all new matrix into a 3-D matrix?

回答(1 个)

Ameer Hamza
Ameer Hamza 2020-11-5
See this example
a1 = rand(3,4);
a2 = rand(3,7);
a3 = rand(3,2);
a4 = rand(3,5);
a = {a1, a2, a3, a4};
m = height(a{1});
n = max(cellfun(@width, a));
a = cellfun(@(x) {[x zeros(m, n-width(x))]}, a);
A = cat(3, a{:}) % 3D matrix
  3 个评论
xiao wei
xiao wei 2020-11-11
my code is as follows:
loadstr(:,1) ={'...'}; %file name
loadstr(:,2) = {... }; % file classification
for i = 1:numel(loadstr(:,1))
path = 'C:\...'; % path for file
file = loadstr{i,1};
fileName = strcat(path,file,'.mat');
vars{i} = load(fileName);
tmp (i) = structfun(@length,vars{i});
maxLength=max(tmp);
end
for i = 1:numel(loadstr(:,1))
a = cellfun(@(x) {[x zeros(126, maxLength-tmp(i))]}, vars(i));
end
my problem is:
  1. how can I add zeros(126, maxLength-tmp(i)) to the end of each file and save it as new file (in the name of old file)?
  2. how can I save these new files into a 3-D matrix?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Software Development Tools 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by