【时间】2018.12.17
【题目】使用np.concatenate出现的一个错误--- Argument given by name ('axis') and position (2)
【问题】:在python使用了np.concatenate(array1,array2,axis=0)后,程序报错TypeError: Argument given by name ('axis') and position (2)
【出现问题的原因】:此处错误的意思是 axis参数 与位置2冲突,即axis参数不能放在位置2,即第三个位置
【解决方法】:通过查看np.concatenate的用法后发现,使用时应该讲要合并的数组用()或者[]括起来,所以应该改为np.concatenate((array1,array2),axis=0)