美文网首页
numpy常用函数

numpy常用函数

作者: 简Lynn | 来源:发表于2019-12-20 20:31 被阅读0次

    np.arange([start, ]stop, [step, ]dtype=None)

    创建等差数组

    start: 开始值,可选,默认从0开始;
    stop:结束值,必填;
    step:步长,可选,默认1;
    dtype: 元素数据类型,默认None;"

    import numpy as np
    
    ind = np.arange(256, dtype=int)  # 0~255,int,[0, 1, ……, 255]
    

    相关文章

      网友评论

          本文标题:numpy常用函数

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