Python中的连续索引 - 而不是Matlab

时间:2017-09-26 12:18:08

标签: python matlab indexing

我有一个1680 x 8维features.mat数组。 在Matlab的一个循环中,我在每次迭代中提取了连续的120行,用这个(代码片段):

for k = 1:14

    features = features(1+(k-1)*60:60*(k+1),:);
    % some other code
end

现在我是python的新手,并且不确定索引。将.mat文件作为numpy数组加载后,我看到索引从0开始 - 但是如果我从0循环到119,它会抛出一个错误,说这些只有119行 - 为什么会这样,我怎么做必须在python中编写上面的循环吗?

0 个答案:

没有答案