网站首页 站内搜索

搜索结果

查询Tags标签: array4,共有 1条记录
  • python numpy的一些基本使用

    import numpy as npthe 1st part: the build of arrayarray1_1 = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) [[1 2 3][4 5 6][7 8 9]] array1_2 = np.zeros([3, 3]) [[0. 0. 0.][0. 0. 0.][0. 0. 0.]] array1_3 = np.ones([3, 3]) [[1. 1. 1.][1. 1. 1.][1. 1. 1.]] a…

    2022/1/24 17:04:15 人评论 次浏览
扫一扫关注最新编程教程