This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I have a variable that represents a double value in the range between 0 and 1. This variable should increase (i.e. come closer to 1) everytime a certain event occurs (say, a user clicks).
How (mathematically) would I calculate the variable, so that it comes closer to 1 everytime the event happens? This is probably pretty easy, but I'm lost here...
The problem I have is that I don't have the overall number of events (n) that already occured, but only the current value (v) of the variable. Otherwise I could calculate v = 1-1*n.
How (mathematically) would I calculate the variable, so that it comes closer to 1 everytime the event happens? This is probably pretty easy, but I'm lost here...
This is a weird requirement. You need to get closer to one, but you don't care how you approach it?
Lukas Benberg wrote:
The problem I have is that I don't have the overall number of events (n) that already occured, but only the current value (v) of the variable. Otherwise I could calculate v = 1-1*n.
I don't think that'd return a value between 0 and 1..... What use would (1-n) be? I mean, n being an integer....
Lukas Benberg
Ranch Hand
Joined: Jan 03, 2007
Posts: 45
posted
0
Thank you all,
I think this is what I had in my mind: x += (1 - x)/2.0 .
Henry, for the moment I don't care _how_ I approach 1. Later, this may become relevant. I will have to think about your hint.
Prabz, you are right, what I actually meant was: v = 1-1/n
i think however you do it, you will have a limit to how many clicks they can make. at some point, you will hit the limit on the precision of a float/long, and you're done.
can you perhaps better explain the larger problem? Maybe there is a better solution...
Never ascribe to malice that which can be adequately explained by stupidity.
Lukas Benberg
Ranch Hand
Joined: Jan 03, 2007
Posts: 45
posted
0
Hi Fred,
the context is: I want to calculate something like the user's "preferences" for "items" from data I have. for further analysis, all preference values have to be between 0 and 1 (or alternatively between -1 and 1). I don't know in advance the final "preference" value, because preferences may increase later. also, the number of "items" may change later.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.