how to combine two .m files into one file

조회 수: 18 (최근 30일)
sandeep k
sandeep k 2016년 6월 18일
댓글: Fawad Chandio 2019년 9월 23일
i want to use the data of two m-files to plot joint histogram
  댓글 수: 1
Guillaume
Guillaume 2016년 7월 7일
Do you really mean .m file which is just source code of a script,function or class, or .mat file which is used for storing the content of variables?
What is the data of an .m file? The text content of the file? The output(s) of the script or function in the file?

댓글을 달려면 로그인하십시오.

답변 (2개)

MOHIT
MOHIT 2016년 6월 18일
clear the question, what kind of file?

Bojun Ma
Bojun Ma 2016년 7월 7일
편집: Stephen23 2016년 7월 7일
packagemFiles({'file1','file2','file3'});
function packagemFiles(FileNames)
N=length(FileNames);
if N<1
return;
else
TragetFile = ['Combined_',FileNames{1}];
[hTargetFile,ErrMsg] = fopen(TragetFile,'w');
end
for i=1:N
[hSourceFile,ErrMsg] = fopen(FileNames{i},'r');
if hSourceFile < 0
disp([varargin{i},'is not found!']);
fclose(hSourceFile);
return;
end
Data = fread(hSourceFile);
fclose(hSourceFile);
fwrite(hTargetFile,Data);
end
fclose(hTargetFile);
end
  댓글 수: 1
Fawad Chandio
Fawad Chandio 2019년 9월 23일
where we put this code behends button or where...??

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Histograms에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by