0
votes
2answers
15 views
Simple number pattern to store combinations as a unique sum
This is a math problem, but I'm sure this must come up in some programming scenarios, at least I hope so, and I was wondering if there was a name for this type of situation:
Suppose I have 7 items in …
2
votes
6answers
162 views
Can 12.1 be represented exactly as a floating point number?
This is in reference to the comments in this question:
This code in Java produces 12.100000000000001 and this is using 64-bit doubles which can present 12.1 exactly. – Pyrolistical
Is this …
2
votes
5answers
242 views
Is there a standard sign function (signum, sgn) in C/C++?
I want a function that returns -1 for negative numbers and +1 for positive numbers.
http://en.wikipedia.org/wiki/Sign%5Ffunction
It's easy enough to write my own, but it seems like something that …
1
vote
4answers
116 views
Triangle - Triangle Intersection Test.
I'd like to know if there is out there some tutorial or guide to understand and implement a Triangle-Triangle intersection test in a 3D Environment. (i don't need to know precise where the …
1
vote
2answers
46 views
Are there any matrix math modules compatible with Python 3.x?
When I began this project, I thought it would be easy to get libraries for common stuff like matrix math, so I chose to work in Python 3.1- it being the most recent, updated version of the language. …
0
votes
1answer
9 views
as2 tweening and consistent speeds
I'm tweening a movieclip from startX to finishX. The value of startX varies but finishX is a constant. But as the startX increases in value the animation appears to be quicker. How do I adjust the …
0
votes
4answers
92 views
Maximum length of a decimal latitude/longitude Degree?
What is the maximum length (in kilometers or miles - but please specify) that one degree of latitude and longitude can have in the Earth surface?
I'm not sure if I'm being clear enough, let me …
-7
votes
4answers
165 views
C++ function which is able to realize basic arithmetic operations in different bases [closed]
Hello , i am "pro" (some people say php guru while others say NOOB) (do not be such a people who can not see the important picture , it does not important what i am ,i do not care about my reputation …
0
votes
3answers
78 views
Moving from web generalist to some particular specialization. Any suggestions?
I've kind of asked this before but I don't think I asked it properly, so I'm changing it up and hopefully I should get better responses.
I'd like to change the nature of my day job, Rails, with …
1
vote
2answers
45 views
AMN and math logic notation
I'm not sure this is appropriate for stackoverflow, but I don't know where else to ask. I'm studying the B-Method for proving consistence in requirement specifications, and I have an issue with the …
0
votes
2answers
35 views
redistributing application with NAG math libraries- client must have license?
Has anyone dealt with re-distributing an application that uses the Numerical Algorithms Group (NAG) Libraries?
It seems like when I build an executable, it won't run unless I have an environment …
-1
votes
4answers
246 views
sum of series 1*3-3*5+5*7
please help to print series as well sum of series like 1*3-3*5+5*7 up to n terms i have used code like this in php
class series {
function ser(){
$i = 0;
$k = 3;
$m = 0;
…
2
votes
2answers
46 views
Looking for novice book on combinatorics
I am looking for books on the math & computing applications of Combinatorics.
Let me know your favorite books on this topic. Thanks.
0
votes
3answers
60 views
Mixing two RGB color vectors to get resultant
I am trying to mix two source RGB vectors to create a third "resultant vector" that is an intuitive mix of the first two.
Ideally, I would be able to emulate "real paint mixing characteristics", but …
2
votes
3answers
240 views
C# Math Function Implementation Help
How can I implement the following function:
in C#?
Thanks.
