美文网首页
numpy随记

numpy随记

作者: 爱昕昕的猫先生 | 来源:发表于2018-06-05 11:30 被阅读0次
  1. meshgrid函数,用两个坐标轴上的点在平面上画格
    用法:
    [X, Y] = meshgrid(x, y)
    [X,Y]=meshgrid(x)与[X,Y]=meshgrid(x,x)是等同的
    [X,Y,Z]=meshgrid(x,y,z)生成三维数组,可用来计算三变量的函数和绘制三维立体图。
  2. np.r_是按列连接两个矩阵,就是把两矩阵上下相加,要求列数相等,类似于pandas中的concat()。
    np.c_是按行连接两个矩阵,就是把两矩阵左右相加,要求行数相等,类似于pandas中的merge()。
    例:
    import numpy as np
    a = np.array([1, 2, 3])
    b = np.array([4, 5, 6])
    c = np.c_[a,b]
    print(np.r_[a,b])
    print(c)
    print(np.c_[c,a])


    image.png
  3. np.sum用法
    axis=0,即行压缩,axis=1,即列压缩
    keepdims : bool, optional(保持缩小轴原尺寸)
    If this is set to True, the axes which are reduced are left in the result as dimensions with size one. With this option, the result will broadcast correctly against the input array.
    If the default value is passed, then keepdims will not be passed through to the sum method of sub-classes of ndarray, however any non-default value will be. If the sub-classes sum method does not implement keepdims any exceptions will be raised.


    image.png

相关文章

  • numpy随记

    meshgrid函数,用两个坐标轴上的点在平面上画格用法:[X, Y] = meshgrid(x, y)[X,Y]...

  • 科学计算库numpy的执行示例

    numpy1 numpy2 numpy3 numpy4

  • numpy中的常量

    Constants 正无穷 numpy.inf numpy.Inf numpy.Infinity numpy.in...

  • NumPy学习资料

    Numpy 中文资料 NumPy 中文文档 NumPy 中文用户指南 NumPy 中文参考手册

  • Numpy基础

    安装Numpy Numpy Numpy属性 ndim:纬度 shape:行数和列数 size:元素个数 Numpy...

  • Numpy和Pandas基本操作速查

    """ numpy 基本操作 """'''安装 Numpy 的方法:pip install numpy''''''...

  • numpy 基础

    numpy 基础 导入numpy 版本 np常用方法 numpy.array 的基本属性 numpy.array ...

  • Numpy入门

    1、熟悉 numpy 的基础属性 2、numpy 创建 array 3、numpy的基础运算 4、numpy索引 ...

  • 学习:biopython的安装

    安装Numpy 因为使用biopython需要numpy的支持,所以需要先安装numpy。安装numpy过程如下:...

  • Numpy

    Numpy中文文档 # 基本语法 ``` import numpy myText = numpy.genfromt...

网友评论

      本文标题:numpy随记

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