Tagged Questions
The calculation tag has no wiki summary.
36
votes
4answers
2k views
How to implement a reputation system like Stack Overflow? [closed]
I've been looking into implementing a Stackoverflow-like site (for a completely different area of knowledge) for a little bit now, and I have a question on what people think is the best way to ...
28
votes
22answers
15k views
Equation (expression) parser with precedence?
I've developed an equation parser using a simple stack algorithm that will handle binary (+, -, |, &, *, /, etc) operators, unary (!) operators, and parenthesis.
Using this method, however, ...
25
votes
13answers
1k views
What is the fastest way to count the unique elements in a list of billion elements?
My problem is not usual. Let's imagine few billions of strings. Strings are usually less then 15 characters. In this list I need to find out the number of the unique elements.
First of all, what ...
25
votes
14answers
8k views
How do you calculate the average of a set of angles?
I want to calculate the average of a set of angles. For example, I might have several samples from the reading of a compass. The problem of course is how to deal with the wraparound. The same ...
22
votes
4answers
7k views
How do I calculate number of days betwen two dates using Python?
If I have two dates (ex. '8/18/2008' and '9/26/2008') what is the best way to get the difference measured in days?
16
votes
3answers
495 views
1/252 = 0 in c#?
I'm doing a calc and while debugging i found this:
double num = 1/252;
when I debugged this, num is set to zero (0). Is there a reason for this? I'd like to make it the actual calculation.
Thanks
15
votes
4answers
179 views
Non-Stop cronjob
I got a new requirement from the business about "real time" data/statistics. They want to show how our system is performing in real time.
I am not sure how to do it but here are my thoughts:
I don't ...
15
votes
5answers
12k views
How to calculate the bounding box for a given lat/lng location?
I have given a location defined by latitude and longitude.
Now i want to calculate a bounding box within e.g. 10 kilometers of that point.
The bounding box should be defined as latmin, lngmin and ...
13
votes
7answers
3k views
What's the best way to calculate remaining download time?
Let's say you want to calculate the remaining download time, and you have all the information needed, that is: File size, dl'ed size, size left, time elapsed, momentary dl speed, etc'.
How would you ...
13
votes
4answers
612 views
What is a good reference for how calculation engines such as Excel work?
I am interested in learning how dependency-based calculation engines work in practice. Of course, I can make up my own algorithm, but I was curious if there were any well explained algorithms that are ...
12
votes
15answers
8k views
9
votes
12answers
1k views
Averaging angles… Again
I want to calculate the average of a set of angles, which represents source bearing (0 to 360 deg) - (similar to wind-direction)
I know it has been discussed before (several times). The accepted ...
8
votes
3answers
64 views
mortage calculator in php wrong amount
i am working on a simple loan calculator, so simple that it's not even working properly.
function calculatePayment($price, $down, $term)
{
$loan = $price - $down;
$rate = (4/100) / 12;
...
8
votes
5answers
15k views
How to calculate the IP range when the IP address and the netmask is given?
When a IP-Range is written as aaa.bbb.ccc.ddd/netmask (CIDR Notation) I need to calculate the first and the last included ip address in this range with C#.
Example:
Input: 192.168.0.1/25
Result: ...
8
votes
4answers
2k views
How to calculate scores?
This question is more related to logic than any programming language. If the question is not apt for the forum please do let me know and I will delete this.
I have to write a logic to calculate ...
8
votes
9answers
10k views
Sum of digits in C#
What's the fastest and easiest to read implementation of calculating the sum of digits?
I.e. Given the number: 17463 = 1 + 7 + 4 + 6 + 3 = 21
7
votes
5answers
357 views
How to calculate the angle between a place on Earth and the Sun?
For my application I need to calculate an angle between two different lines:
1) The first line is between a point on the earth which is defined by longitude and latitude and the center of the sun.
...
7
votes
2answers
385 views
How to give a textbox a fixed width of 17,5 cm?
I have an application with a textbox, and the width of the textbox on the screen must always be 17,5 centimeters on the screen of the user.
This is what I tried so far:
const double centimeter = ...
7
votes
8answers
456 views
where should I do the calculating stuff,PHP or Mysql?
I've been doing a lot of calculating stuff nowadays. Usually I prefer to do these calculations in PHP rather than MySQL though I know PHP is not good at this. I thought MySQL may be worse. But I ...
7
votes
13answers
21k views
Calculate elapsed time in Java / Groovy
I have...
Date start = new Date()
...
...
...
Date stop = new Date()
I'd like to get the years, months, days, hours, minutes and seconds ellapsed between these two dates.
--
I'll refine the ...
6
votes
3answers
252 views
Excel is calculating a formula with a VBA function as an error unless it is re-entered
I've got a simple if statement set up in a worksheet where the if condition is VBA user defined function:
Function CellIsFormula(ByRef rng)
CellIsFormula = rng(1).HasFormula
End Function
This ...
6
votes
2answers
405 views
Such a thing as a calculation engine for C#?
Is there any calculation engine for C# that can automatically recalculate dependent fields when a value changes?
Let me freestyle for a second, I'm imagining something like this..
...
6
votes
7answers
545 views
How to turn null to 0
I built a little program that calculates the average of 15 numbers or less. There are 15 text-boxes, each one's default value is '0'. The program knows to get the sum of all typed numbers and divide ...
6
votes
3answers
250 views
C - floating point rounding
I'm trying to understand how floating point numbers work.
I think I'd like to test out what I know / need to learn by evaluating the following: I would like to find the smallest x such that x + 1 = ...
6
votes
4answers
713 views
How to get the nth root of big numbers in C++?
Is there a C++ library that can take nth roots of big numbers (numbers than can't fit in an unsigned long long)?
6
votes
7answers
905 views
Do math functions of constant expressions get pre-calculated at compile time?
I tend to use math functions of constant expressions for convinience and coherence (i.e log(x)/log(2) instead of log(x)/0.3...). Since these functions aren't actually a part of the language itself, ...
6
votes
6answers
5k views
How to turn hexadecimal into decimal using brain?
Opening the calculator to do such tiny stuff appears annoying to me ,and I strongly believe in ths saying "the more you know,the better!" so here I am asking you how to convert hexadecimal to decimal.
...
6
votes
2answers
128 views
Representing repetitive dates
Repetitive Dates:
Billing cycles come in a lot of different formats, for example: "the first of the month", "third Friday of the month", or "first weekday on or after 21st day after the 13th of the ...
6
votes
2answers
12k views
Calculate the display width of a string in Java
How to calculate the length (in pixels) of a string in Java?
Preferable without using Swing.
EDIT:
I would like to draw the string using the drawString() in Java2D
and use the length for word ...
6
votes
9answers
3k views
How to calculate the sum of values in a tree using SQL
I need to sum points on each level earned by a tree of users. Level 1 is the sum of users' points of the users 1 level below the user. Level 2 is the Level 1 points of the users 2 levels below the ...
5
votes
3answers
191 views
C# LINQ and calculations involving large datasets
This is more of a technical "how-to" or "best approach" question.
We have a current requirement to retrieve records from the database, place them into an 'in-memory' list and then perform a series of ...
5
votes
4answers
131 views
On a float rounding error
I do not understand the output of the following program:
int main()
{
float x = 14.567729f;
float sqr = x * x;
float diff1 = sqr - x * x;
double diff2 = double(sqr) - ...
5
votes
2answers
365 views
Calculate if an object is inside a set of coordinates?
I have a set of X and Y points that builds a shape and I need to know if an object is inside it or not what is the calculation to it ?
X and Y coords example:
522.56055 2389.885
544.96 2386.3406
...
5
votes
2answers
255 views
Intelligently calculating chart tick positions
Whatever I'm using matplotlib, Open-Flash-Charts or other charts frameworks I always end needing to find a way to set x/y scales limits and intervals since builtins are not enough smart (or not at ...
5
votes
5answers
717 views
Recurrence Library for date calculations for .Net
is there a free recurrence library that is available that we could use ?, we are looking for something like we supply the date time and the type of recurrence (daily, Monthly, Weekly and the ...
5
votes
6answers
1k views
C# Math.Pow is not calculating correctly
I'm having a problem with C#. To be precise with the Math.pow(). If I try to calculate 15^14 then I get "29192926025390624". But if I calculate it with Wolfram Alpha I get "29192926025390625". As you ...
5
votes
6answers
307 views
Calculating subtotals in R
I have a data frame with 900,000 rows and 11 columns in R. The column names and types are as follows:
column name: date / mcode / mname / ycode / yname / yissue / bsent / breturn / tsent / ...
5
votes
2answers
556 views
Is working with money (decimal numbers) in PHP considered safe?
I have an items table in my MySQL database with a DECIMAL(10,2) field called price.
When fetching these values, is it safe to do calculations and such with these numbers in PHP? Or will I end up with ...
5
votes
2answers
193 views
Calculate how much bigger image A is from image B
Some math calculations in JS problem solving
I am working on a zoom image functionality that creates a new div with a large image that is moved through x and y according to the mousemove on the ...
5
votes
2answers
413 views
Do the math sum of a text variable? (E.g 5865/100 )
I have a variable that is...
$whatever = "5865/100";
This is a text variable.
I want it to calculate 5865/100 , so that I can add it to other numbers and do a calculation.
Number_format doesn't ...
5
votes
4answers
1k views
What is the best algorithm to calculate the most scored item?
I have an music items that are scored by users between 1 to 5, and
I need a formula to get the 5 most scored items.
But obviously an item that get 3.5 average score from 1000 different users will be ...
5
votes
3answers
2k views
How can I generate convenient date ranges based on a given NSDate?
I'm creating a report generator in Cocoa, and I need to produce convenient date ranges such as "Today", "This Week", "This Month", "This Year", etc.
Is there a good way to do this? Here is my ...
5
votes
7answers
381 views
When is it appropriate to use floating precision data types?
It's clear that one shouldn't use floating precision when working with, say, monetary amounts since the variation in precision leads to inaccuracies when doing calculations with that amount.
That ...
4
votes
3answers
117 views
Object Model for complex Calculator
I'm thinking of a object-structure, which shall do complex calculations. The calculations are done, based upon the entries on a GUI of the user.
The formular looks like this:
A = B+C;
B = D*E;
C = ...
4
votes
4answers
155 views
Numbers of weekdays in a date range in TSQL
This is harder than it looks. I need a function that calculates the numbers of a given weekday in a date range. I don't want any loops or recusive sql, there are millions of examples doing just that, ...
4
votes
2answers
164 views
PHP calculator with one input field
I need to have a text input field do or not do basic calculations. Example
<input type="text" />
I then submit by post and the post will know to either enter the value or do calculations
...
4
votes
4answers
214 views
Could python have suffix-based number notation for engineering purposes?
As an electrical engineer I (we?) use python for helping out with calculation/automation/etc.
When dealing with calculations using some real-world numbers it is VERY common to think in -nano, -pico, ...
4
votes
3answers
197 views
C/C++ Cross platform Library allowing the utilisation of GPU for floating point calculations
Does any one know of any cross platform c/c++ libraries which will utilise the GPU for the purposes of floating point calculations, not specifically graphics oriented calcs. Which ones are in common ...
4
votes
8answers
963 views
Why does the area come back as 0?
Here's the code.
int a;
int pi = 3.14;
int area;
int main()
{
cout << "Input the radius of the circle ";
cin >> a;
a *= a *= pi >> area;
cout << "The area ...
4
votes
2answers
467 views
Using basic arithmetics for calculating Pi with arbitary precision
I am looking for a formula/algorithm to calculate PI~3.14 in a given precision.
The formula/algorithm must have only very basic arithmetic as
+: Addition
-: Subtraction
*: Multiplication
/: Divison
...