在MATLAB中xlsread和xlswrite的麻烦

时间:2016-10-26 23:05:18

标签: excel matlab xlsread

我正在尝试编写一个加载excel文件的脚本,并将10个子文件写入10个单独的文件或单独的工作表中。我是MATLAB的新手,我遇到了一些麻烦。

需要想办法加载文件,只访问excel文件中的A1:B1000,然后在新的Excel文件中写入该信息。然后加载A1000:B2000等...

我的想法和代码如下:

i=1;   
j=1000;   
TenTimes=1;  
master= 'Master.xlsx';  
while TenTimes < 10  
       num = xlsread('File1.xlsx');     
    Time = num(:,1);   
    Current = num(:,2);   
    xlswrite(master,[Time Current]);  
    i == j;   
    j = j +1000;   
    TenTimes = TenTimes + 1;  
end

我厌倦了以下事情:

num=num = xlsread('File1.xlsx', 'Ai:Bj'); 

这使MATLAB崩溃并冻结我的笔记本电脑。

num = xlsread('File1.xlsx');     
Time = num('Ai:Aj',1);   
Current = num('Bi:Bj",2);

这会产生垃圾

我也不确定如何对循环进行编码以生成单独的文件或单独的工作表。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

以下是从文件中读取并写入前两列的代码,无论其中包含哪些数据(数字或字符)。

% parameters
infile = 'File1.xlsx'; % file to read from
infile_sheet = 'Sheet1'; % sheet to read from
outfile = 'Master.xlsx'; % file to write to
col_index = 1:2; % index of columns to write
block_size = 1000; % size of blocks to write

% the work
[~, ~, data] = xlsread(infile, infile_sheet); % read from the file
num_rows = size(data, 1);
num_blocks = ceil(num_rows/block_size);
for block = 1:num_blocks
    % get the index of rows in the current block
    start_row = (block-1) * block_size + 1;
    end_row = min(block * block_size, num_rows);
    row_index = start_row : end_row;

    % write the current block to sheet Sheet<block>
    xlswrite(outfile, data(row_index, col_index), sprintf('Sheet%.0f', block));
end

行[〜,〜,data]中的波浪号只是意味着应该忽略从xlsread函数返回的前两个值;我们想要的只是第三个输出,它将是一个单元格数组。