1

假设我们有一个简单的小文件,其中包含一个包含不同值类型的一维数组,具有特定的结构(第一项是 MATLAB uint,第二个值是 MATLAB uint,其余的值是float

如何从 Python 中的文件中读取这样的异构类型数组?

MATLAB 中的等效代码如下。

function M = load_float_matrix(fileName)

fid = fopen(fileName);
if fid < 0
    error(['Error during opening the file ' fileName]);
end

rows = fread(fid, 1, 'uint');
cols = fread(fid, 1, 'uint');
data = fread(fid, inf, 'float');

M = reshape(data, [cols rows])';

fclose(fid);

end

注意:这个线程描述了以下读取三个连续uint32值的方法:

f = open(...)
import array
a = array.array("L")  # L is the typecode for uint32
a.fromfile(f, 3)

但是,我怎么知道 L 是 的类型码uint32?那么其他类型呢?(例如float)。

另外,如何从 中读取连续值f?会a.fromfile向前移动文件中的读取指针吗?

4

1 回答 1

2

尝试麻木。

下面是一种方法。

import numpy as np
f = open(filename,"r")
N = np.fromfile(fp,dtype=np.int32,count=2)
a = np.fromfile(fp,dtype=np.float64)
a = np.resize(a,N)

有了这个,您还可以读取混合格式/类型(文本 + 二进制)文件。可以通过正确格式化 dtype 选项来组合第 3 行和第 4 行,google 以获得更多示例。

于 2013-04-29T01:41:24.353 回答