MATLAB: How to stack .mat files

mat filesxyz

Suppose in one of my data set, i have 20 .mat files.
Now, i want to stack all 20 .mat files together.
The issue is though they are in the same data set, size of each .mat file differs (not a huge variation though). As my final objective is to create a 3D model, how can i stack those .mat files together in order to open in another visualization software? Kindly (atleast) send me a link/documentation which help me to resolve this issue.

Best Answer

You cannot stack .m files. You might be able to stack variables that are stored in the files.
However, if the variables are not all the same size, you need to define how they are to align. Should they be rescaled (as if they are images of different resolution), or should the center all be in the same place and the smaller ones should be padded on all sides, or should the top left edge be aligned and the bottom right be padded on the smaller, or are these images containing features that have to be "registered" (lined up), or ... ?
Related Question