Concatenate more than 2 mat files?

2 次查看(过去 30 天)
Kaushik
Kaushik 2013-5-22
Hi, I have 3 mat files which I want to concatenate. The three files may contain similar data variables or different data variables. The values of similar data variables should be concatenated and unique variables should be taken directly. This data should be saved in a new mat file. Can anyone suggest me how to do this. I tried the solution given at link http://www.mathworks.in/matlabcentral/answers/26949. But the solution given at above link is for similar data variables in both the files. Things get messy while concatenating 3 mat files with some data variables unique to only one, or some data variables present in only two mat files. Thus taking common from all the three files does not satisfy the requirements.
  1 个评论
José-Luis
José-Luis 2013-5-22
An example would be more helpful to understand what you ask. Have you tried cell arrays?

请先登录,再进行评论。

回答(2 个)

Azzi Abdelmalek
Azzi Abdelmalek 2013-5-22
You can load all your mat-files then concatenate whatever you want

Iain
Iain 2013-5-22
编辑:Iain 2013-5-22
You need to load your mat files into variables. File1 = load('filename.mat');
File1 then contains the contents of filename. You need to interrogate that structure to get the list of variable names.
Then, you can make decisions about how to concatenate your files based on the variable names that are common to at least two of your input files.
To then put each of those back into the workspace you'll need to use "eval" to create the right variables in your workspace. - I would suggest you consider using a format other than mat for your input.
  3 个评论
Iain
Iain 2013-5-22
To save the concatenated values back out to file, you will need to make those variables appear in the workspace. You'll need to use something like
eval([variablename ' = [matfile1.' variablename ' matfile2.' variablename ' matfile3.' variablename '];');
But that will throw errors if "variablename" isn't in all of the matfiles, and if there are dimension mismatches...
Kaushik
Kaushik 2013-5-22
yes, that's the problem. I could take out the variables that are common in all the 3 mat files, and unique between all the 3 mat files. But, what about the variables that are common to only 2 files? The code works fine if the variables are not common. or if there are only 2 mat files.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Workspace Variables and MAT-Files 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by