摘要: 一、定义 np.concatenate() :连接沿现有轴的数组。 函数用于沿指定轴连接相同形状的两个或多个数组。 np.concatenate((a1, a2, ...), axis) 参数: a1, a2, ...:相同类型的数组 axis: 沿着它连接数组的轴,默认为0 实例: import 阅读全文
posted @ 2021-10-08 21:57 做梦当财神 阅读(311) 评论(0) 推荐(0) 编辑
摘要: np.expend_dims :扩展数组形状。 通过在指定位置插入新的轴来扩展数组形状。 np.expand_dims(arr, axis) 参数: arr:输入数组 axis:新轴插入的位置 实例: import numpy as np x = np.array(([1, 2], [3, 4])) 阅读全文
posted @ 2021-10-08 21:40 做梦当财神 阅读(989) 评论(0) 推荐(0) 编辑