Python
勇敢驴驴
不到一年的时间,要努力学习呀!一定要上岸上岸上岸!加油!
展开
-
人工智能与机器学习
人工智能与机器学习2023-02-27原创 2023-02-27 10:30:22 · 447 阅读 · 1 评论 -
Python金融数据挖掘 复习思考题 第2章
第1题1、题目生成一个5*5的矩阵,其元素是区间[1,10]中的随机整数。2、代码import numpy as npa = np.random.randint(1,10,25).reshape(5,5)print(a)3、结果[[5 3 7 6 4] [3 7 4 3 7] [1 7 4 4 3] [1 8 5 6 8] [8 4 4 2 9]]第2题1、题目生成一个4*4的矩阵,其元素符合正态分布。2、代码import numpy as原创 2022-05-31 19:26:42 · 1881 阅读 · 0 评论 -
python中shape[0]、shape[1]
shape[0]:为矩阵的行数shape[1]:为矩阵的列数import numpy as npk = np.matrix([[1,2,3], [4,5,6], [7,8,9] [10,11,12])print(np.shape(k)) # 输出(4,3)表示矩阵为3行4列print(k.shape[0]) # shape[0]输出4,为矩阵的行数print(k.shape[1])原创 2022-05-23 20:30:13 · 1714 阅读 · 0 评论