2
votes
3answers
73 views
Making a smooth path from an irregular number of x,y points to simulate handwriting
Hi all
I am trying to make a 'brush' tool in AS3 (pure, not Flex) which simulates handwriting, making strokes to be smooth instead of cornered. Then, the trace must be reduced to …
3
votes
3answers
115 views
Surjective functions
As an extension question my lecturer for my maths in computer science module asked us to find examples of when a surjective function is vital to the operation of a system, he said …
0
votes
2answers
45 views
Algorithm to swap independent and dependent variables of function samples
Suppose you have several functions y1 = f1(x), y2 = f2(x), etc. and you want to plot their graphs together on one plot.
Imagine now that for some reason it is easier to obtain the …
1
vote
3answers
44 views
Angles to decimal conversion
Hi,
I'm trying to understand some flash animation, and am having difficulty working out the following. Can anyone help?
I want to convert a degree range of 0 to 90, to a value b …
0
votes
3answers
164 views
How to solve this mathematical problem? [closed]
I try to solve a algorithm which is capable of calculating this:
Imagine two cars carA and carB. Both cars are standing on a long straight road catercorner. carA is on eastside at …
0
votes
2answers
126 views
ax + by = c given two points P and Q [closed]
How do I arrive at the equation of a line in standard form given two points?
I found an answer here which says that the equation of a line joining P(px, py) and Q(qx, qy) is given …
0
votes
7answers
102 views
Mathematical Evaluation of Source Code
Is there some mathematical relation or formula that can estimate a better source code from a less better one?
If I write a program to do exactly the same task using PHP and PERL p …
2
votes
8answers
134 views
Is there a simple way to create a unique integer key from a two-integer composite key?
For various reasons that aren't too germane to the question, I've got a table with a composite key made out of two integers and I want to create a single unique key out of those tw …
1
vote
3answers
51 views
Large Exponents in Ruby?
I'm just doing some University related Diffie Hellmann exercises and tried to use ruby for it.
Sadly, ruby doesn't seem to be able to deal with large exponents:
warning: in a** …
0
votes
0answers
101 views
Partial Differential Equations [closed]
Can anyone explain what these are when applied to finance?
Often math topics are intuitive when explained right.
The wikipedia article is very complex.
Any simple explanations p …
0
votes
6answers
85 views
JavaScript subtraction problem
I thought I'd write a simple script to animate my webpage a little.
The basic idea was to make a div grow bigger and smaller, when I push a button. I handled the growing part well …
3
votes
0answers
65 views
Discrete Mathematics [closed]
What have been the best way you have studied for a Discrete Mathematics course. I am learning discrete maths using Arsdigita course.It has been helpful but sometime I get lost.Are …
2
votes
2answers
144 views
Faster implementation of Math.round?
Are there any drawbacks to this code, which appears to be a faster (and correct) version of java.lang.Math.round?
public static long round(double d) {
if (d > 0) {
…
1
vote
2answers
47 views
Solving for optimal alignment of 3d polygonal mesh
I'm trying to implement a geometry templating engine. One of the parts is taking a prototypical polygonal mesh and aligning an instantiation with some points in the larger object. …
0
votes
1answer
55 views
‘Difference’ between two quaternions
I'm working in Ogre, but it's a general quaternion problem.
I have an object, to which I apply a rotation quaternion Q1 initially. Later, I want to make it as if I initially rotat …
