how to combine two .m files into one file

18 visualizaciones (últimos 30 días)
sandeep k
sandeep k el 18 de Jun. de 2016
Comentada: Fawad Chandio el 23 de Sept. de 2019
i want to use the data of two m-files to plot joint histogram
  1 comentario
Guillaume
Guillaume el 7 de Jul. de 2016
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?

Iniciar sesión para comentar.

Respuestas (2)

MOHIT
MOHIT el 18 de Jun. de 2016
clear the question, what kind of file?

Bojun Ma
Bojun Ma el 7 de Jul. de 2016
Editada: Stephen23 el 7 de Jul. de 2016
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 comentario
Fawad Chandio
Fawad Chandio el 23 de Sept. de 2019
where we put this code behends button or where...??

Iniciar sesión para comentar.

Categorías

Más información sobre Histograms en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by