Info

此问题已关闭。 请重新打开它进行编辑或回答。

Could anyone help me how to five different mat files in workspace into a single mat file.

1 次查看(过去 30 天)
I am having five different mat files as user1.mat,user2.mat,user3.mat,user4.mat and user5.mat
I want to combine all five mat file into a single mat file.could anyone please help me on it.

回答(1 个)

the cyclist
the cyclist 2020-3-9
One possibility is
user1 = load user1.mat
user2 = load user2.mat
user3 = load user3.mat
user4 = load user4.mat
user5 = load user5.mat
save user.mat
Each individual variable (e.g. user1) stored in user.mat will be a structure with the data from the corresponding file.
It's a shame you ended up in such a predicament. Take a look at this, which might help in the future.
  1 个评论
jaah navi
jaah navi 2020-3-9
In my case user1.mat contains data in 2 rows 10 colums
user2.mat contains data in 5 rows 10 colums
user3.mat contains data in 10 rows 10 columns
user4.mat contain data in 12 rows 10 columns
user5.mat contains data in 15 rows 10 columns
so i want to combine all mat files into a single file which contains 44 rows 10 colums,which means 2 added with 5 added with 10 added with 12 added with 15.
This was the result which i need.
could you please help me on it.

标签

Community Treasure Hunt

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

Start Hunting!

Translated by