Module itertools

Module itertools 

Source
Expand description

Signal processing functions which operate on Iterable implemenentors. Named itertools after the itertool crate

Modules§

complex

Functions§

pad_clone
Clone and pad the real valued input collection with the floating point type F by the length n. Meaning the output collection will have a final length of x.len() + n
pad_inplace
Pad the real valued input collection inplace with the floating point type F by the length n. Meaning the collection will have a final length of x.len() + n
pad_to_nearest_power_of_two_clone
Clone and pad the real valued input collection with floating point value F to the nearest power of two length
pad_to_nearest_power_of_two_inplace
Pad the real valued input collection in place with floating point value F to the nearest power of two length
zero_pad_clone
Clone and zero pad the real valued input collection by the length n. Meaning the output collection will have a final length of x.len() + n
zero_pad_inplace
Zero pad the real valued input collection by the length n. Meaning the collection will have a final length of x.len() + n
zero_pad_to_nearest_power_of_two_clone
Clone and zero pad the real valued input collection to the nearest power of two length
zero_pad_to_nearest_power_of_two_inplace
Zero pad the real valued input collection inplace to the nearest power of two length