Yuto Horikawa

Results 195 comments of Yuto Horikawa

>Hmm, I kinda feel if the input type is Integer we should just call float on it? Okay, I'll open a PR to do that.

Now some issues around `Quaternions.slerp` were solved (https://github.com/JuliaGeometry/Quaternions.jl/pull/78). We need to add methods to `Quaterniuons.slerp` for `Rotation{3}`.

I'm also developing a package for B-spline, so I can help this issue. :muscle: https://github.com/hyrodium/BasicBSpline.jl

@BrianGun Thanks for the comment! I'll check the code. No, the current BasicBSpline.jl doesn't provide methods for NURBS, but I was planning to add them (and also [T-spline](https://en.wikipedia.org/wiki/T-spline)) in the...

Hi! I made a package [ImageClipboard.jl](https://github.com/hyrodium/ImageClipboard.jl) for images in the clipboard, so this may help this issue. ![pluto_with_imageclipboard](https://user-images.githubusercontent.com/7488140/122964392-2ef73080-d3c2-11eb-8019-988787549ec8.gif) https://discourse.julialang.org/t/ann-announcing-imageclipboard-jl/63169/3

@disberd Hmm, maybe it depends on the version of Pluto? In my environment, it is v0.14.7. Or, adding `using Images` will change the show method. ![image](https://user-images.githubusercontent.com/7488140/123017764-393c1d80-d408-11eb-8ac9-9d4f5a46f617.png)

Ah, `ImageShow.jl` was good enough.

Is there any technical problem for this limitations? Is it okay to replace ```julia elseif n =5. jacobi_gw(n, a, b) else error("gaussjacobi($n,$a,$b) is not implemented: n must be ≤ 4000...

Current `master` branch on Julia 1.5: ```julia julia> using FastGaussQuadrature julia> t = time(); gausslobatto(2); time() - t 7.010434865951538 ``` ```julia julia> using FastGaussQuadrature julia> t=time(); FastGaussQuadrature.jacobi_asy(101,1., 1.); time() -...

>1. Intervals.jl uses singleton bounds types instead of symbols (`Open` / `Closed` instead of `:open` / `:closed`) >2. The `Interval` type in Intervals.jl supports unbounded endpoints. Having this as part...