jkalias

Results 58 comments of jkalias

This is quite an edge case. What do you expect for example to happen here, where you have multiple ordinate values for the same abscissa? ``` var interpolation = Interpolate.Linear(new[]...

I am not sure if this is the correct mathematical behavior to be honest. Since the function is not [one-to-one](https://en.wikipedia.org/wiki/Injective_function) how can one choose whether to return `y0`, `y1`, or...

Is this still an active issue? If not, can we please close it?

Hi, Could this behavior be platform specific? I am running your code sample on my MacBook Pro M1 (in Release mode), and get the following results. It seems that the...

I would go as far as to suggest that we introduced to the package the [special orthogonal group](https://en.m.wikipedia.org/wiki/Orthogonal_group). Then we can easily rotate around any arbitrary axis so the rotations...

Hi, Is your matrix maybe sparse? I am looking at the implementation of the dense matrix storage (`DenseColumnMajorMatrixStorage.CopyToUnchecked`) and this seems pretty efficient to me, using an array copy (no...

Has this been addressed already?

I have addressed your comments, I hope this is along the lines you envisioned. > There's a few things that I would want to resolve before merging this (this is...

Ok, thanks for the effort

> This approach doesn't work to make exact cases of degrees exact (or rather it does, but unfortunately introduces enormous errors for radian arguments; this would make `cos(Angle(.pi/2))`, which should...