espdev

Results 58 comments of espdev

I'd also like to add: 1. "Super" (windows) key modifier cannot be used in the global shortcut to show Zeal. I would like to set Super+Z for showing Zeal and...

@atleta On Windows I cannot set a shortcut with "Super", the shortcut just do not typed in the field. `Ctrl+`, `Alt+`, `Shift+` work, any combination with `Super` does not work....

Hello, Could you support protobuf version range just like `googleapis/python-api-core` library? ```python "protobuf>=3.19.5,

Hello @montanaviking, csaps-cpp is not currently being actively developed. Python version uses vectorization for [multivariate smoothing](https://csaps.readthedocs.io/en/latest/tutorial.html#multivariate-smoothing). Currently, csaps-cpp can only do univariate smoothing, not multivariate with vectorization support. For now,...

Hello, @sroener You probably need to apply `scipy.griddata` linear or nearest interpolator firstly to your irregular data and second use csaps to smooth the interpolated data on regular grid (the...

Currently csaps cannot work with NaN values. If the input data contains NaN values, then all values will be NaN in the output data. csaps only can extrapolate values outside...

In my [comment](https://github.com/espdev/csaps/issues/24#issuecomment-644961451) I provide a code fragment showing the use of weight vectors in ND-grid smoothing. We cannot use weight surface because we apply weights to univariate splines by...

> Do you have a preferred way of reaching out if questions regarding the code arise? You can just ask here in this issue.

Hello @ZeroCool2u, Thank you for the contribution. Could you add some tests coverage the new functionality?

You can even create a new inherited Spline class with an implementation of gcv, or you can embed this functionality in the existing class. The main thing is that this...