Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
6answers
8k views

Fixed point math in c#?

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 this ...
17
votes
3answers
786 views

How do I use fix, and how does it work?

I was a bit confused by the documentation for fix (although I think I understand what it's supposed to do now), so I looked at the source code. That left me more confused: fix :: (a -> a) -> a ...
16
votes
5answers
3k views

C++ fixed point library?

I am looking for a free C++ fixed point library (Mainly for use with embedded devices, not for arbitrary precision math). Basically, the requirements are: No unnecessary runtime overhead: whatever ...
13
votes
6answers
1k 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 be running on, if i ...
13
votes
9answers
5k 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 I changed floats to ...
11
votes
5answers
1k 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 classes?
10
votes
3answers
163 views

How to optimize a simple numeric type wrapper class in C++?

I am trying to implement a fixed-point class in C++, but I face problems with performance. I have reduced the problem to a simple wrapper of the float type and it is still slow. My question is - why ...
10
votes
5answers
756 views

How do I convert a floating point C code to fixed point?

I have a C code which uses doubles. I want to be able to run the code on a DSP (TMS320). But the DSP doesn't support doubles, only fixed-point numbers. What is the best way to convert the code into ...
10
votes
3answers
565 views

Will fixed-point arithmetic be worth my trouble?

I'm working on a fluid dynamics Navier-Stokes solver that should run in real time. Hence, performance is important. Right now, I'm looking at a number of tight loops that each account for a ...
9
votes
1answer
187 views

C++ library for integer trigonometry, speed optimized with optional approximations?

I've reached the point in a project where it makes more sense to start building some support classes for vectors and misc trigonometry than keep using ad-hoc functions. I expect there to be many C++ ...
8
votes
4answers
165 views

How to improve fixed point square-root for small values

I am using Anthony Williams' fixed point library described in the Dr Dobb's article "Optimizing Math-Intensive Applications with Fixed-Point Arithmetic" to calculate the distance between two ...
8
votes
6answers
278 views

Python computing error

I’m using the API mpmath to compute the following sum Let us consider the serie u0, u1, u2 defined by: u0 = 3/2 = 1,5 u1 = 5/3 = 1,6666666… un+1 = 2003 - 6002/un + 4000/un un-1 The serie ...
8
votes
6answers
10k 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: an integer part and ...
8
votes
8answers
6k 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 by the determinant ...
7
votes
5answers
356 views

Fixed point combinator in Haskell

The fixed point combinator doesn't always produce the right answer given the definition: fix f = f (fix f) The following code does not terminate: fix (\x->x*x) 0 Of course, fix can't always ...
6
votes
1answer
128 views

haskell — set fixedpoint library?

I'm looking for a library that will compute the fixed point / closure of a set under a number of operators of variable arity. For example, fixwith [(+)] [1] for the integers should compute all of N ...
6
votes
2answers
215 views

Fixed point on a compression algorithm widely used nowadays

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[] a function that ...
5
votes
2answers
166 views

Transforming a function that computes a fixed point

I have a function which computes a fixed point in terms of iterate: equivalenceClosure :: (Ord a) => Relation a -> Relation a equivalenceClosure = fst . List.head -- "guaranteed" ...
5
votes
4answers
555 views

Finding fixed points / attractors / repellors of a Tent map

I need to find fixed points and attractors of a Tent map function given by the definition below: xt = (3/2) * xt-1 when 0 <= x <= (2/3) and xt = 3* (1-xt-1) when ...
5
votes
1answer
754 views

How can I perform 64-bit division with a 32-bit divide instruction?

This is (AFAIK) a specific question within this general topic. Here's the situation: I have an embedded system (a video game console) based on a 32-bit RISC microcontroller (a variant of NEC's ...
5
votes
1answer
206 views

Fixed point combinator usage? Why a stack overflow here?

I am confused about something. I wanted to generate an example (in Clojure) demonstrating how a fixed point combinator could be used to evaluate the fixed point of a sequence that mathematically ...
4
votes
2answers
514 views

Fixed Point MATLAB DSP Algorithm

I've got a question about coding an algorithm for a Texas Instruments TMS320C64xx DSP in MATLAB: I've got a working sloppy implementation of my filter in MATLAB. My goal is to use MATLAB Embedded ...
4
votes
3answers
353 views

Floating Point Algorithms in C

I am thinking recently on how floating point math works on computers and is hard for me understand all the tecnicals details behind the formulas. I would need to understand the basics of addition, ...
3
votes
2answers
2k views

Fast fixed point pow, log, exp and sqrt

I've got a fixed point class (10.22) and I have a need of a pow, a sqrt, an exp and a log function. Alas I have no idea where to even start on this. Can anyone provide me with some links to useful ...
3
votes
3answers
352 views

Python: create fixed point decimal from two 32-bit ints (one for int portion, one for decimal)

I have a 64-bit timestamp unpacked from a file with binary data, where the top 32 bits are the number of seconds and the bottom 32 bits are the fraction of the second. I'm stuck with how to actually ...
3
votes
1answer
247 views

Fixed-point multiplication in a known range

I'm trying to multiply A*B in 16-bit fixed point, while keeping as much accuracy as possible. A is 16-bit in unsigned integer range, B is divided by 1000 and always between 0.001 and 9.999. It's been ...
3
votes
1answer
124 views

Fixed point combinators for functions over custom types?

Most examples of the use of fixed point combinators involve functions that take integers to integers (e.g. factorial). In many cases the fixed point of a function over the real numbers will end up ...
3
votes
2answers
1k views

Is it better to use GL_FIXED or GL_FLOAT on Android

I would have assumed that GL_FIXED was faster, but the iPhone docs actually say to use GL_FLOAT because GL_FIXED has to be converted to GL_FLOAT. Is it the same on Android? I suppose it varies by ...
3
votes
3answers
149 views

How to name functions to extract parts of a decimal number?

I am writing a class for handling decimal numbers, e.g. "123.456". I want one function for extracting the digits before the decimal point (123), and one function to extract the digits after the ...
3
votes
1answer
833 views

Fastest way to convert 16.16 fixed point to 32 bit float in c/c++ on x86?

Most people seem to want to go the other way. I'm wondering if there is a fast way to convert fixed point to floating point, ideally using SSE2. Either straight C or C++ or even asm would be fine.
3
votes
5answers
590 views

initialize a variable statically (at compile time)

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, whereby in floating-point it ...
2
votes
4answers
64 views

How many bits are used for the exponent

I'm writing a few functions that will convert float/double to fixed point and back. Does anyone know the best way to determine the number of bits used for the exponent portion of a float or double? I ...
2
votes
1answer
68 views

3D rotation of a sphere around a fixed point in Matlab

I have a sphere centered on the origin of the axes. I use the rotate3d function to allow its rotation. However, when I rotate it, it seems to move in the space with having a fixed point for the ...
2
votes
1answer
78 views

Fixed point of K combinator

The K combinator is K := (λxy.x) and the fixed point combinator is Y := λf.(λx.f x x) (λx.f x x). I tried to calculate YK: YK = (λx.Kxx)(λx.Kxx) = (λx.x)(λx.x) = (λx.x) = I So because YK is the ...
2
votes
1answer
118 views

Overflows in fixed point math

As part learning exercise, part hobby project, I am implementing my own interpretation of the Cooley-Tukey FFT algorithm on an AVR using fixed point math. I haven't dealt much with fixed point math ...
2
votes
1answer
215 views

Inverse sqrt for fixed point

I am looking for the best inverse square root algorithm for fixed point 16.16 numbers. The code below is what I have so far(but basically it takes the square root and divides by the original number, ...
2
votes
1answer
206 views

Fixed point arithmetic

I'm currently using Microchip's Fixed Point Library, but I think this applies to most fixed point libraries. It supports Q15 and Q15.16 types, respectively 16-bit and 32-bit data. One thing I noticed ...
2
votes
9answers
213 views

How to treat a struct with two unsigned shorts as if it were an unsigned int? (in C)

I created a structure to represent a fixed-point positive number. I want the numbers in both sides of the decimal point to consist 2 bytes. typedef struct Fixed_t { unsigned short floor; //left ...
2
votes
3answers
595 views

Convert a double to fixed decimal point in C++

I have a double variable in C++ and want to print it out to the screen as a fixed decimal point number. Basically I want to know how to write a function that takes a double and a number of decimal ...
2
votes
1answer
207 views

Arm assembler right shifting after multiplpy long?

Newbie ARM assembler question. I am writing my first arm assembler program and I am trying to code this C fragment. int x = somevalue1 << 12; // s19.12 int y = somevalue2 << 12; // ...
2
votes
1answer
170 views

U combinator on a fibonacci : how would you translate this code to python?

I am trying to learn about combinators and I am having trouble understand the example given at (Y overriding self-application). I think I am beginning to grasp the concept but I am still far from ...
2
votes
1answer
224 views

Fixed point multiplication “solution,” crazy or viable?

Assume this much: I'm using a 16.16 fixed point system. System is 32 bit. CPU has no floating point processor. Overflow is pretty imminent for multiplication for anything larger than 1.0 * 0.4999 To ...
2
votes
1answer
666 views

Complex numbers: fast cartesian to polar conversion

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: Q.phase = atan2 ...
2
votes
4answers
1k 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 conversions. So I rewrote some ...
2
votes
4answers
2k 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 in Linux can ...
1
vote
1answer
47 views

How to convert packed integer (16.16) fixed-point to float?

How to convert a "32-bit signed fixed-point number (16.16)" to a float? Is (fixed >> 16) + (fixed & 0xffff) / 65536.0 ok? What about -2.5? And -0.5? Or is fixed / 65536.0 the right way? ...
1
vote
2answers
122 views

Fixed-point unsigned division in C

I need an algorithm to do unsigned fixed-point division in C. I can use at most 32-bit words. I want to minimize the number of bits needed to represent the integer part while being able to use ...
1
vote
2answers
81 views

Fixed point library for the iPhone?

Are there any fixed-point libraries for the iPhone? I have some code that executes quite a few floating-point operations but runs unacceptably slowly on the phone and I'd like to see how the ...
1
vote
1answer
64 views

What happends when you convert floating point numbers to fixed point numbers in java (java me specifically)

I want my java me program to run as efficiently as possible. my goal is to make a ray cast and want to know the best way to traverse voxels. I have heard that conversion and comparison of floating ...
1
vote
1answer
175 views

Fixed Point Development

I'm working on some fixed point coding these days. If I have a bunch of 16 bit samples from an ADC and I do multiplication with a 16 bit filter coefficient, the result could be a 32 bit fixed point ...

1 2