将数据从.txt文件导入Matlab

时间:2018-07-15 16:14:34

标签: matlab data-import matlab-table

首先感谢您阅读我的问题。
我正在尝试将具有以下格式的文件中的数据导入Matlab:

#Text  
#Text: Number  
...  
#Text: Number  
Set1:  
1 2  
3 4   
Set2:  
5 6  
7 8   
...  

我想将这些数字分解为以下形式的两个矩阵:
(1 5
 3 7)

(2 6
 4 8)

我首先仅构建了这两个矩阵中的第一个。

 Winkel = 15;
 xp = 30;

 M = readtable('Ebene_1.txt')
 M([1:4],:) = [];
 M(:,3) = [];

for i=0:Winkel-1
   A = table2array(M((2+i*31:31+i*31),1))
end

但是这种解决方案只给了我无法转换为正常向量的细胞阵列。

我也尝试使用importdata命令,但是也找不到使它起作用的方法。我知道还有许多其他问题与我的类似,但我找不到所有数据都在同一列中的问题。另外,有许多用于将数据导入Matlab的Matlab命令,我不确定哪一种是最好的。
第一次在网上提出这样的问题,请随时向我询问更多详细信息。

1 个答案:

答案 0 :(得分:0)

您可以使用readtable导入示例中提供的数据,但是由于文件格式的原因,您需要对函数进行一些调整。

您可以使用detectImportOptions来告诉函数如何导入数据。

%Detect import options for your text file.
opts = detectImportOptions('Ebene_1.txt')

%Specify variable names for your table.
opts.VariableNames = {'Text','Number'};

%Ignore last column of your text file as it does not contain data you are interested in.
opts.ExtraColumnsRule = 'ignore';

%You can confirm that the function has successfully identified that the data is numeric by inspecting the VariableTypes property.
%opts.VariableTypes

%Read your text file with detectImportOptions.
M = readtable('Ebene_1.txt',opts)

现在您有了表M,只需应用基本的Matlab操作即可获得指定的矩阵。

%Find numerical values in Text and Number variables. Ignore NaN values.
A = M.Text(~isnan(M.Text));
B = M.Number(~isnan(M.Number));

%Build matrices.
A = [A(1:2:end)';A(2:2:end)']
B = [B(1:2:end)';B(2:2:end)']

输出:

A =

     1     5
     3     7

B =

     2     6
     4     8