我是一個matlab中的新手,並陷入這個問題。我嘗試使用matlab代碼從多個excel文件創建一個新文件。它設法生成新文件。然而,該文件是一團糟,我真的不知道該怎麼做。這裏是代碼:如何使用matlab將多個excel文件導入到一個excel文件中?
% Merge multiple XLS files into one XLS file
[filenames, folder] = uigetfile('*.xls','Select the data file','MultiSelect','on'); % gets directory from any folder
% Create output file name in the same folder.
outputFileName = fullfile(folder, 'rainfall.xls');
fidOutput = fopen(outputFileName, 'wt'); % open output file to write
for k = 1 : length(filenames)
% Get this file name.
thisFileName = fullfile(folder, filenames{k});
% Open input file:
fidInput = fopen(thisFileName);
% Read text from it
thisText = fread(fidInput, '*char');
% Copy to output file:
fwrite(fidOutput, thisText);
fclose(fidInput); % close the input file
end
fclose(fidOutput);
我得到的圖片顯示如何混亂的結果數據是。你可以幫我嗎?非常感謝你。
同樣的問題一遍又一遍,沒有努力讓事情工作。只需查看OP的配置文件活動即可。 –