I am currently doing an optimised sin using a lookup table and given I have seen some bitwise magic posted before I was wondering what people could come up with for this problem:
Given power of 2 sized table containing a quarter sine wave what is the best way to get the table index/sign for the output.
static final float[] TABLE; // a power of 2 length quarter wave sine table
// phase goes from 0.0f->1.0f
public static float sin(float phase){
}
Now you can just use conditionals to calculate each of the quadrants but if you convert phase to an integer using TABLE.length*4 the top two bits give you the sign and flip for the quarter wave. I have come up with some mashing that gives you the index and sign but I’m sure there is an easier way two exploit 2’s compliment and modular to get the answer. Bonus points for efficient linear interpolation.