python等间隔取样



import numpy as np

# 1表示开始位置
# 25表示结束位置
# 15表示抽取数据个数
# int表示转换为整型数据,默认是float
data=np.linspace(1, 25, 15, dtype=int)

print(data)

import numpy as np

ddd= np.linspace(0,1,num=5,endpoint=True,retstep=False, dtype=None)

print(ddd)

以下内容转自:【python】numpy库linspace相同间隔采样 详解 - 赵莉 - 博客园

linspace可以用来实现相同间隔的采样;
numpy.linspace(start,stop,num=50,endpoint=True,retstep=False, dtype=None)
返回num均匀分布的样本,在[start, stop]。

  • Parameters(参数):

    start : scalar(标量) The starting value of the sequence(序列的起始点).
    stop : scalar 序列的结束点,除非endpoint被设置为False,在这种情况下, the sequence consists of all but the last of num + 1 evenly spaced samples(该序列包括所有除了最后的num+1上均匀分布的样本(感觉这样翻译有点坑)), 英文美文以致于stop被排除.当endpoint is False的时候注意步长的大小(下面有例子).
    num : int, optional(可选), 生成的样本数,默认是50。必须是非负。
    endpoint : bool, optional, 如果是真,则一定包括stop,如果为False,一定不会有stop
    retstep : bool, optional If True, return (samples, step), where step is the spacing between
    samples.(看例子)
    dtype : dtype, optional The type of the output array. If dtype is not given, infer the data type from the other input arguments(推断这个输入用例从其他的输入中). New in version 1.9.0.

  • Returns:

    samples : ndarray
    There are num equally spaced samples in the closed
    interval [start, stop] or the half-open
    interval [start, stop) (depending on whether endpoint is True or False).
    step : float(只有当retstep设置为真的时候才会存在)
    Only returned if retstep is True
    Size of spacing between samples.

当endpoint被设置为False的时候

import numpy as np
np.linspace(1, 10, 10)
array([ 1., 2., 3., 4., 5., 6., 7., 8., 9., 10.])
np.linspace(1, 10, 10, endpoint=False)
array([ 1. , 1.9, 2.8, 3.7, 4.6, 5.5, 6.4, 7.3, 8.2, 9.1])
In [4]: np.linspace(1, 10, 10, endpoint=False, retstep=True)
Out[4]: (array([ 1. , 1.9, 2.8, 3.7, 4.6, 5.5, 6.4, 7.3, 8.2, 9.1]), 0.9)

官网的例子Examples

Graphical illustration:

这里写图片描述

 

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值