torch.bartlett_window¶
- 
torch.bartlett_window(window_length, periodic=True, *, dtype=None, layout=torch.strided, device=None, requires_grad=False) → Tensor¶
- Bartlett window function. - where is the full window size. - The input - window_lengthis a positive integer controlling the returned window size.- periodicflag determines whether the returned window trims off the last duplicate value from the symmetric window and is ready to be used as a periodic window with functions like- torch.stft(). Therefore, if- periodicis true, the in above formula is in fact . Also, we always have- torch.bartlett_window(L, periodic=True)equal to- torch.bartlett_window(L + 1, periodic=False)[:-1]).- Note - If - window_length, the returned window contains a single value 1.- Parameters
- Keyword Arguments
- dtype ( - torch.dtype, optional) – the desired data type of returned tensor. Default: if- None, uses a global default (see- torch.set_default_tensor_type()). Only floating point types are supported.
- layout ( - torch.layout, optional) – the desired layout of returned window tensor. Only- torch.strided(dense layout) is supported.
- device ( - torch.device, optional) – the desired device of returned tensor. Default: if- None, uses the current device for the default tensor type (see- torch.set_default_tensor_type()).- devicewill be the CPU for CPU tensor types and the current CUDA device for CUDA tensor types.
- requires_grad (bool, optional) – If autograd should record operations on the returned tensor. Default: - False.
 
- Returns
- A 1-D tensor of size containing the window 
- Return type