【发布时间】:2021-11-16 15:58:58
【问题描述】:
我正在尝试将此代码从 Matlab 转换为 Python:
index = Output_num - 3;
X = Data(1:end - 3, 1:end);
T = Data(end + index:end + index, 1:end);
我测试了许多选项,但其中任何一个都适合我。
我试过这样:
index = Output_num -3 #this works good
X = Data[0:-3] # I think this works good ( I compared results with the one from Matlab)
T1 = Data[-1] # with this one I try to access to the last row of the 2d array. The aim was to access on it and then add index on all the rows with the following:
T = T1 + index
【问题讨论】:
-
请提供更多关于您已经尝试过的信息,以便我们更好地帮助您。
-
@TheCodingPenguin 问题已编辑。谢谢