Re: [statistics] Mode function for Cauchy distribution

2019-05-09 Thread Alex Herbert
> On 9 May 2019, at 21:17, Eric Barnhill wrote: > > Awesome! > > On Thu, May 9, 2019 at 10:44 AM Udit Arora wrote: > >> I will see what I can do. It will take some time, but I will get to know >> more about the other distributions. >> >> >> On Thu, 9 May 2019, 10:58 pm Eric Barnhill, >>

Re: [statistics] Mode function for Cauchy distribution

2019-05-09 Thread Eric Barnhill
Awesome! On Thu, May 9, 2019 at 10:44 AM Udit Arora wrote: > I will see what I can do. It will take some time, but I will get to know > more about the other distributions. > > > On Thu, 9 May 2019, 10:58 pm Eric Barnhill, > wrote: > > > Udit, is it clear what to do here? Gilles recommends you

Re: [rng] Copying samplers

2019-05-09 Thread Gilles Sadowski
Le jeu. 9 mai 2019 à 17:00, Alex Herbert a écrit : > > > On 09/05/2019 15:39, Gilles Sadowski wrote: > > Le jeu. 9 mai 2019 à 15:41, Alex Herbert a écrit > > : > >> On Sat, 4 May 2019 at 23:52, Alex Herbert wrote: > >> > >>> > On 4 May 2019, at 22:34, Gilles Sadowski wrote: > >

Re: [statistics] Mode function for Cauchy distribution

2019-05-09 Thread Udit Arora
I will see what I can do. It will take some time, but I will get to know more about the other distributions. On Thu, 9 May 2019, 10:58 pm Eric Barnhill, wrote: > Udit, is it clear what to do here? Gilles recommends you propose some edits > to ContinuousDistribution instead, to return Mode and

Re: [statistics] Mode function for Cauchy distribution

2019-05-09 Thread Eric Barnhill
Udit, is it clear what to do here? Gilles recommends you propose some edits to ContinuousDistribution instead, to return Mode and Median. But then, if an interface is altered, all the classes that implement that interface need to have these functions added, so we hope you are up for all that

Re: [rng] Utility for creating permutations of hex digits

2019-05-09 Thread Gilles Sadowski
Le jeu. 9 mai 2019 à 17:07, Alex Herbert a écrit : > > > On 09/05/2019 15:46, Gilles Sadowski wrote: > > Le jeu. 9 mai 2019 à 14:30, Alex Herbert a écrit > > : > >> > >> > >>> On 9 May 2019, at 12:58, Gilles Sadowski wrote: > >>> > >>> Hi. > >>> > >>> Le jeu. 9 mai 2019 à 13:31, Alex Herbert

Re: [rng] Utility for creating permutations of hex digits

2019-05-09 Thread Alex Herbert
On 09/05/2019 15:46, Gilles Sadowski wrote: Le jeu. 9 mai 2019 à 14:30, Alex Herbert a écrit : On 9 May 2019, at 12:58, Gilles Sadowski wrote: Hi. Le jeu. 9 mai 2019 à 13:31, Alex Herbert mailto:alex.d.herb...@gmail.com>> a écrit : The Middle Square Weyl Sequence (MSWS) generator uses

Re: [rng] Copying samplers

2019-05-09 Thread Alex Herbert
On 09/05/2019 15:39, Gilles Sadowski wrote: Le jeu. 9 mai 2019 à 15:41, Alex Herbert a écrit : On Sat, 4 May 2019 at 23:52, Alex Herbert wrote: On 4 May 2019, at 22:34, Gilles Sadowski wrote: Hi. Le sam. 4 mai 2019 à 21:31, Alex Herbert a écrit : On 4 May 2019, at 14:46, Gilles

Re: [rng] Utility for creating permutations of hex digits

2019-05-09 Thread Gilles Sadowski
Le jeu. 9 mai 2019 à 14:30, Alex Herbert a écrit : > > > > > On 9 May 2019, at 12:58, Gilles Sadowski wrote: > > > > Hi. > > > > Le jeu. 9 mai 2019 à 13:31, Alex Herbert > > a écrit : > >> > >> The Middle Square Weyl Sequence (MSWS) generator uses an internal

Re: [rng] Copying samplers

2019-05-09 Thread Gilles Sadowski
Le jeu. 9 mai 2019 à 15:41, Alex Herbert a écrit : > > On Sat, 4 May 2019 at 23:52, Alex Herbert wrote: > > > > > > > > On 4 May 2019, at 22:34, Gilles Sadowski wrote: > > > > > > Hi. > > > > > > Le sam. 4 mai 2019 à 21:31, Alex Herbert a > > écrit : > > >> > > >> > > >> > > >>> On 4 May 2019,

Re: [statistics] Mode function for Cauchy distribution

2019-05-09 Thread Gilles Sadowski
Hi Udit. Le jeu. 9 mai 2019 à 12:52, Udit Arora a écrit : > > I intend to add a mode function for the Cauchy Distribution. It is a small > addition which i thought might be helpful. How will it be helpful? I.e. what would an application developer be able to do, that he can't with the current

Re: [rng] Copying samplers

2019-05-09 Thread Alex Herbert
On Sat, 4 May 2019 at 23:52, Alex Herbert wrote: > > > > On 4 May 2019, at 22:34, Gilles Sadowski wrote: > > > > Hi. > > > > Le sam. 4 mai 2019 à 21:31, Alex Herbert a > écrit : > >> > >> > >> > >>> On 4 May 2019, at 14:46, Gilles Sadowski wrote: > >>> > >>> Hello. > >>> > >>> Le ven. 3 mai

Re: [rng] Utility for creating permutations of hex digits

2019-05-09 Thread Alex Herbert
> On 9 May 2019, at 12:58, Gilles Sadowski wrote: > > Hi. > > Le jeu. 9 mai 2019 à 13:31, Alex Herbert > a écrit : >> >> The Middle Square Weyl Sequence (MSWS) generator uses an internal Weyl >> sequence [1] to create randomness. This is basically a linear

Re: [rng] Utility for creating permutations of hex digits

2019-05-09 Thread Gilles Sadowski
Hi. Le jeu. 9 mai 2019 à 13:31, Alex Herbert a écrit : > > The Middle Square Weyl Sequence (MSWS) generator uses an internal Weyl > sequence [1] to create randomness. This is basically a linear increment added > to a sum that will eventually wrap (due to overflow) to restart at the >

[rng] Utility for creating permutations of hex digits

2019-05-09 Thread Alex Herbert
The Middle Square Weyl Sequence (MSWS) generator uses an internal Weyl sequence [1] to create randomness. This is basically a linear increment added to a sum that will eventually wrap (due to overflow) to restart at the beginning. The MSWS paper recommends an increment with a high number of

Re: [STATISTICS][Regression][Linear Math] Is there any plan/anyone working on a new Linear Math module currently?

2019-05-09 Thread Gilles Sadowski
Hi. Le mer. 8 mai 2019 à 23:59, Eric Barnhill a écrit : > > It looks to me like the EJML library is the best choice for linear algebra https://lessthanoptimal.github.io/Java-Matrix-Benchmark/runtime/2019_02_i53570/ > right now, is well supported, and we should not reinvent the wheel +1 >

[statistics] Mode function for Cauchy distribution

2019-05-09 Thread Udit Arora
I intend to add a mode function for the Cauchy Distribution. It is a small addition which i thought might be helpful. Thanks