如何在Mathematica中将.dat文件作为矩阵导入?

时间:2012-12-06 15:14:05

标签: file matrix wolfram-mathematica

我有一个.dat文件,由一串数字1到9组成,如下所示:

1

2

3

4

5

6

7

8

9

如何将数据导入mathematica,使其格式为{{1,2,3},{4,5,6},{7,8,9}},我可以生成3x3矩阵?

2 个答案:

答案 0 :(得分:2)

我建议:

  data=Partition[Import["<Name of data file>", "Table"],3];

答案 1 :(得分:0)

ReadList["file.dat", {Number, Number, Number}]
{{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}

也可写:

ReadList["file.dat", Number ~Table~ {3}]