-
Hello again!
I am using this library for a real-time motion control application. To this effect, I cannot have any syscalls once the system is operational, as it introduces non-determinism. This in…
-
Calling `bounds` on a `CubicSplineInterpolation` throws a MethodError:
```
julia> xV = LinRange(-20.0, 10.0, 50);
julia> yV = LinRange(-10.0, 30.0, 40);
julia> zM = xV .+ xV .* yV';
julia> cubi…
-
Hi! I'm studying the source code. I find the method
```py
def bspline_kernel_3d(sigma=[1, 1, 1], order=2, asTensor=False, dtype=th.float32, device='cpu'):
kernel_ones = th.ones(1, 1, *sigma)
…
-
I was wondering how hard it would be to support irregular grids for `BSpline` interpolation. I am aware that you have `Gridded` for this case, however, I often end up missing features of `Gridded` whi…
-
I'm getting some weird intermittent `ReadOnlyMemoryError`s using interpolate as`interpolate(complexVectorToInterpolate, BSpline(Quadratic(Reflect())), OnGrid())`. It doesn't happen every time, but som…
-
I tried building this in Ubuntu 18.04, and I'm running into a couple of issues. I have fixed one, but not the second:
1) In uav_simulator/so3_control/src/so3_control_nodelet.cpp, PLUGINLIB_DECLARE…
-
Currently this only works with `Linear`:
```julia
julia> data = [[1 2; 3 4], [5 6; 7 8]]
2-element Array{Array{Int64,2},1}:
[1 2; 3 4]
[5 6; 7 8]
julia> itp = interpolate(data, BSpline(Lin…
-
Using the sample code in http://pointclouds.org/documentation/tutorials/bspline_fitting.php#bspline-fitting
And using this data as an input PCD file :
https://drive.google.com/file/d/0B7IfWv6WuKo8UHhq…
-
### Is there an existing issue for this?
- [X] I have searched the existing issues
### Problem description
I have used a bspline to join two arcs. There are two segments to the bspline, and e…
-
The following Python code gives NaN
```python
import casadi as cas
import numpy as np
print(cas.__version__)
x = np.arange(-5, 6)
y = 0 * np.ones(len(x))
f = cas.interpolant('LUT', 'bspli…