Chao Kong
Chao Kong
In the document string of the `y_noise` argument, it said: > y_noise : np.ndarray [shape=(# frames,) or (# channels, # frames)], real-valued noise signal to compute statistics over (only for...
The sound editor has a menu command `View spectral slice`, which calls the `Sound_and_Spectrum` to do FFT. However, I noticed in the codes of this command, the selection was first...
It's sometimes useful to enable the typing system for static type checking. However, currently, `parselmouth` does not support typing system so that we can only see parselmouth objects as `Any`...
In the current code, the custom `bounds` and `p0` stored in `self._kwargs` are only used when `self.fit()` is called in `__init__()`: https://github.com/mmaelicke/scikit-gstat/blob/46bc79e24add846158a9e9b3803ba014d708d939/skgstat/Variogram.py#L392-L394 But not in some property getters, for example...