Tagged Questions

0
votes
1answer
25 views

Complex numbers: fast cartesian to polar conversion

Hi. I'm looking for a fast way to turn an array of complex numbers into polar representation. E.g, given a complex number X I want to turn it into polar representation like this: …
1
vote
2answers
58 views

Fixed point inverse sine

Does anyone know a (preferably fast) way to calculate the sine of an angle in 4.12 fixed point? (where the result is either 32768ths of a circle or degrees) 4.12 fixed point means …
1
vote
4answers
265 views

Avoiding floating point arithmetic

I wrote a small software synth for the iPhone. To further tune performance I measured my application with Shark and found that I am loosing a lot of time in float/SInt16 conversion …
5
votes
2answers
93 views

Fixed point on a compression algorithm widely used nowadays

Hello, I was wondering if there is a compression algorithm, in common use today, that contains a fixed point, i.e., an identity file. To explain, let's call C : byte[] -> byte[ …
0
votes
4answers
153 views

How to use expr on float?

I know it's really stupid question, but I don't know how to do this in bash: 20 / 30 * 100 It should be 66,67 but expr is saying 0, because it doesn't support float. What command …
0
votes
2answers
191 views

Numerical Conversion in C/C++

I need to convert a C/C++ double to a 64 bit two's complement, where the Radix point is at bit number 19 (inclusive). This means that for the format I want to convert to 0x000 …
3
votes
5answers
195 views

initialize a variable statically (at compile time)

Hi guys, 1) I've got many constants in my C algo. 2) my code works both in floating-point and fixed-point. Right now, these constants are initialized by a function, float2fixed, …
6
votes
9answers
1k views

What’s the best way to do fixed-point math?

I need to speed up a program for the Nintendo DS which doesn't have an FPU, so I need to change floating-point math (which is emulated and slow) to fixed-point. How I started was …
8
votes
3answers
2k views

Fixed point math in c#?

Hi there, I was wondering if anyone here knows of any good resources for fixed point math in c#? I've seen things like this (http://2ddev.72dpiarmy.com/viewtopic.php?id=156) and th …
7
votes
8answers
3k views

Invert 4x4 matrix - Numerical most stable solution needed.

I want to invert a 4x4 matrix. My numbers are stored in fixed-point format (1.15.16 to be exact). With floating-point arithmetic I usually just build the adjoint matrix and divide …
6
votes
6answers
468 views

When to use Fixed Point these days

For intense number-crunching i'm considering using fixed point instead of floating point. Of course it'll matter how many bytes the fixed point type is in size, on what CPU it'll …
4
votes
6answers
2k views

Converting floating point to fixed point

In C++, what's the generic way to convert any floating point value (float) to fixed point (int, 16:16 or 24:8)? EDIT: For clarification, fixed-point values have two parts to them: …
8
votes
5answers
592 views

What do you use for fixed point representation in C++?

I'm looking for a fixed-point standard to use for financial data, do you know any that is worth trying? Do you have any experience on the performance of that hand-made fixed-point …