Note & Push
/
MATLAB转Python注意事项
/
x(idx, :)
Search
x(idx, :)
matlab实例
X(target_variable,:)
python实例
x[[target_variable], :]
备注
转python说明
使用索引获取(1,n)或(n,1)的2维向量,y = x[[ind], :],如果直接用序号,numpy得到的是1维向量,matlab得到2维