Re: [VOTE] New component: Standard math functions

2016-07-02 Thread venkatesha m
; > > > On Mon, 27 Jun 2016 03:55:35 + (UTC), venkatesha m wrote: > >> Does this use Java 8? > > > > What is "this"? > > > > If you want to discuss (rather than vote), please start a new > > thread. > > > > Thank you, > >

Re: [VOTE] New component: Standard math functions

2016-06-26 Thread venkatesha m
Does this use Java 8? On Monday, 27 June 2016 2:20 AM, Gilles wrote: On Sun, 26 Jun 2016 16:13:06 -0400, Rob Tompkins wrote: >> On Jun 26, 2016, at 11:21 AM, Gilles >> wrote: >> >>> On Sun, 26 Jun 2016 12:35:38 +0200, Jochen Wiedmann wrote: On Sat, Jun 25, 2016 at 9:00 PM, Gary G

Any commons project to refer standard datastructures and algorithms implementation

2016-06-10 Thread venkatesha m
Hi I would like to know if there is an umbrella project under which basic datastructures and algorithm implementations exist. If there is one please let me know Else; I am looking at things such as  - Apache commons standard / style of interfaces for Trees, Graphs and the various algorithm

Re: [Math] Java version

2015-01-15 Thread venkatesha m
On Thursday, 15 January 2015 10:45 PM, Gilles wrote: On Thu, 15 Jan 2015 12:05:27 -0500, Hank Grabowski wrote: > You would think so, but Java 6 hasn't been updated since early 2013 > and is > still a quarter or more of the installed Java base. The support for > highly > scalable parallel

Re: [lang] Fully recursive equals methods

2014-08-10 Thread venkatesha m
I would like to add that lombok annotations have a good implementations on equals and hash code using annotations for an inspiration. there i can clearly call out which fields of the class are of interest in hashcode and equals method. On Thursday, 7 August 2014 6:17 PM, Yair Zaslavsky wrot

Re: [VOTE] Migrate Commons Math to Git

2014-07-22 Thread venkatesha m
+1 On Wednesday, 23 July 2014 4:11 AM, Gary Gregory wrote: On Tue, Jul 22, 2014 at 6:05 PM, Gilles wrote: > On Tue, 22 Jul 2014 10:01:44 -0700, Phil Steitz wrote: > >> Looks like other projects are running VOTEs to ensure there is >> consensus for this action and including references to V

Re: [MATH-1120] Refactor KthSelector and PivotingStrategy out of Percentile

2014-07-05 Thread venkatesha m
On Saturday, 28 June 2014 12:08 AM, venkatesha murthy wrote: On Wed, Jun 25, 2014 at 12:54 PM, Luc Maisonobe wrote: > Hi Venkat, > > Le 25/06/2014 06:21, venkatesha murthy a écrit : > > The Percentile actually uses KthSelector logic and is dependent on only > > KthSelector > > however t

Re: [MATH] Introduce Lombok annotations into apache commons

2014-06-19 Thread venkatesha m
dation for recreating anything that lombok does, AFAIK. Matt On Wed, Jun 18, 2014 at 2:40 PM, venkatesha m wrote: > Hi, > > I would like to understand if there are any concerns regarding introducing > annotation libraries such as lombok(http://projectlombok.org/) to &

[MATH] Introduce Lombok annotations into apache commons

2014-06-18 Thread venkatesha m
Hi, I would like to understand if there are any concerns regarding introducing annotation libraries such as lombok(http://projectlombok.org/) to commons-math . The most advantages i have seen using it are as follows: a) A majority of code drudge such as equals, hashcode, getter and setter can be

Re: [Math] MATH-1129 and Re: [MATH-1120] Needed opinion about support on variations in, percentile calculation

2014-06-18 Thread venkatesha m
Hi Luc, Gilles First of, Iam immensly thankful to all your comments on this patch. Next, i am attaching my new patch with today's date(18-jun). However please advise if i need to remove the old patch file if it confuses. Please find my response below. The new patch has the suggested changes in

Re: [MATH-1120] Needed opinion about support on variations in percentile calculation

2014-06-09 Thread venkatesha m
Hi All, I am looking for opinion on the name of the enum for the various estimation strategies. This is a public static enum under Percentile and i wish to call it EstimationTecnique. Would appreciate if you can provide feedback on the name or the current proposed name is fine. I have the pat

[MATH-1120] Needed opinion about support on variations in percentile calculation

2014-05-21 Thread venkatesha m
Hi All, The existing Percentile class calculates the percentile based on the quantile position of the array fixed as p * (N+1)/100 for a pth Percentile on an Array of size N. However if we were to add these numbers in MS Excel to calculate the percentile it provides a different result and clos

[math] Please let know for any objections to the proposed patch on MATH-418

2014-05-15 Thread venkatesha m
Please let me know for any changes.

I am not getting mail updates on the comments made on issue MATH-418

2014-05-11 Thread venkatesha m
Hi Please pardon if this is not the mail group to send this. kindly advise/forward this to right group. Currently i have uploaded patch requesting for review; however my own comments i am not able to see. Please help thanks murthy

[math] Could you please let me know the link for the current issues/problems.

2014-04-20 Thread venkatesha m
I would like to take a look at that.. Thanks Murthy

[math] Proposal for New way of Computing an approximate Percentile without storing input data

2014-03-22 Thread venkatesha m
Hi, I would like to propose for adding new way of computing the percentile without needing to store most of input data.  Since this is my first time on contributing to apache; please help me / correct me if i miss any procedure here. Here are the details. Description:  The Percentile calculat