美文网首页
numpy总结

numpy总结

作者: 匿名用户919 | 来源:发表于2018-09-01 16:29 被阅读0次

    numpy的属性总结
    1.itemsize
    查看ndarray对象单个元素的字符长度
    2.size
    查看ndarray对象的元素个数
    3.nbytes
    查看ndarray对象的所有元素字节长度,等于itemsize × size
    4.ndim
    查看ndarray对象的维度数量
    5.T
    查看ndarray对象的转置视图
    6.real
    查看ndarray对象中所有复数的实部
    7.imag
    查看ndarray对象中所有复数的虚部
    8.flat
    查看ndarray对象中的flatiter对象,可迭代遍历,也可切片获取元素。
    个人理解为就是将数组对象转换为可迭代的一维flatiter对象,方便对元素进行迭代遍历处理

    numpy中遇到的问题
    1.报错:

    import scipy
    
    face = scipy.misc.face()
    AttributeError: module 'scipy' has no attribute 'misc'
    
    #以下为修改后代码
    import scipy.misc
    
    face = scipy.misc.face()
    
    

    相关文章

      网友评论

          本文标题:numpy总结

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