美文网首页
1.numpy库的基本使用

1.numpy库的基本使用

作者: Challis | 来源:发表于2018-11-10 15:30 被阅读0次
    import numpy as np
    # 产生ndarray的方法
    
    np.array(list)
    np.ones()
    np.zeros()
    np.full(fill_values=3)
    np.eye(k=0)
    
    np.random.random()
    np.random.randint()
    np.random.randn()
    np.random.normal()
    
    # 主要的属性
    n1.shape
    n1.size
    n1.ndim
    n1.dtype
    
    # 级联操作
    np.concatenate()
    np.vstack()
    np.hstack()
    
    
    # 重置矩阵
    np.resize() 注意size要相等
    
    # 点乘
    np.dot()
    
    # 求逆矩阵
    np.linalg.inv()

    相关文章

      网友评论

          本文标题:1.numpy库的基本使用

          本文链接:https://www.haomeiwen.com/subject/gebzxqtx.html