0
votes
1answer
234 views
How do you compute the XOR Remainder used in CRC?
I'm trying to remember how the math is worked out to compute the remainder of an XOR algorithm in Cyclical Redundancy Checks to verify the remainder bits of a network message.
I shouldn't have tossed …
0
votes
1answer
74 views
Color Interpolation
Okay, so I'm looking at a typical color chooser and it looks something like this:
If we deal with only highly saturated colors, the blending pattern behaves like this:
R 255
G 0
B 0
R 255
G 0 …
0
votes
4answers
228 views
polynomial multiplication using fastfourier transform
i am going through the above topic from CLRS(CORMEN) (page 834) and I got stuck at this point.
Can anybody please explain how the following expression,
A(x)=A^{[0]}(x^2) +xA^{[1]}(x^2)
follows …
0
votes
5answers
185 views
Suggestions for factorising polynomials
As part of some volunteer work for our local school. I was wondering about putting some kind of GUI (Windows) software together to guide the students through the process of factorising polynomials
…
2
votes
8answers
460 views
Object-Oriented Programming: Java.Polynomial — should methods be ‘destructive’?
I have to implement Java.Polynomial as a school assignment. Part of the methods are add(polynomial), multiply(polynomial) etc.
In the case of something like
p.add(q); // computes p + q
is it …
2
votes
3answers
324 views
Convert a quadratic curve points to polynomial representation?
I have the X,Y of 2 end points and 1 bezier point, of a Quadratic Bezier curve.
Using this data, how can I derive the polynomial representation of the curve?
