如何在一个xlsx文件中读取多个系列并将其保存在.mat中?

时间:2018-06-25 05:02:13

标签: matlab import

首先对基本问题感到抱歉。

我所做的是使用“ readtable”将“ .csv”导入到matlab中。但是我不知道将这367个不同的时间序列作为独立的.mat文件。

result = readtable('price.csv');

结果显示在图像文件中以帮助理解。 enter image description here

我如何自动执行此过程?请帮助我。

1 个答案:

答案 0 :(得分:0)

result = readtable('price.csv');
for i = 1:2:734
    M = rmmissing(result(:,[i,i+1]));
    str = M.Properties.VariableNames(2);
    % str{1}(regexp(str{1}, 'x')) = [];
    name = str{1};
    save(['C:\Users\bok\Desktop\mat\',name],'M');
end