假设我们有一个简单的小文件,其中包含一个包含不同值类型的一维数组,具有特定的结构(第一项是 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
向前移动文件中的读取指针吗?