n=length(filesStruct1);
alpha=cell(n,1);
for c=1:n
name1 = fullfile(folder_name1,filesStruct1(c).name);
alpha{c} = double(dicomread(name1)*pi)/4096 - pi/2;
end
...
NB: the "curlies" {} to create cell array alpha.
Alternatively you could read the first to determine
[r,c]=size(alphaOne);
alpha=zeros(r,c,n);
alpha(:,:,1)=alphaOne);
clear alphaOne
for c=2:n
alpha(:,:,c)= ...
...
This way one has a default double array instead of cell array so can save a dereferencing step in use or, depending on what is to be done, making calculations across the various planes is much simpler if that were to be wanted/required...