필터 지우기
필터 지우기

Appending variables from different mat files

조회 수: 1 (최근 30일)
wesso Dadoyan
wesso Dadoyan 2016년 4월 17일
답변: Azzi Abdelmalek 2016년 4월 17일
Hi,
I have many mat files that contain the same variables. Is there any function that would help me to append these variables in 1 file. for example x.mat and y.mat contain abc vector . is there a way to append abc of file x to abc of file y ? I tried changing the names
load x
xyz=abc;
load y
xyz2=abc;
clear abc
abc=[xyz;xyz2];
but i have too many variables and i prefer to do it neatly if there is an append function in matlab

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2016년 4월 17일
a=dir('*.mat')
b={a.name}
v=[];
for k=1:numel(b)
load(b{k})
v=[v;abc]
end

추가 답변 (0개)

카테고리

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