DSPRelated.com
Forums

Efficient way to adjust the magnitude of a complex number

Started by andrewstanfordjason 7 years ago10 replieslatest reply 7 years ago247 views

I am doing some spectral subtraction type DSP and I have found that one of the major sources of computation is the adjustment(via subtraction) of the complex frame values. The operation I am interested in is: given a complex number, x, then set it's magnitude to d, i.e. 

 y = x / abs(x) * d

In my particular case I already know abs(x) and I am working with 32 bit integer arithmetic. 

My question is: are there any tricks (avoiding divides, etc) that are known for this operation? Thanks

[ - ]
Reply by kazJuly 30, 2017

In FPGAs we sometimes resort to lookup tables(LUT) for all or part of equations at the expense of memory.

In your case you can do all in LUT i.e.

you use re(x) and image(x) as address. The content of each location will be value of

re(x)/abs(x) * d & im(x)/abs(x) * d  assuming d is constant else you can use multiplier for d


Or just 1/abs(x) as content to be multiplied by re(x),im(x)

The LUTs can be very large or you can opt for small LUT + some interpolation

[ - ]
Reply by andrewstanfordjasonJuly 30, 2017

That's a nice idea. I'll model the error and see how much interpolation i can get away with as a massive LUT is not preferable but the speed it offers is. 

I assume a 2D LUT would be in order. And i could reduce memory by removing symmetries from it.

Thank you

[ - ]
Reply by kazJuly 30, 2017

Actually I added to above post:

You may just use 1/abs(x) as precomputed content to be multiplied at run time by re(x),im(x) & d

[ - ]
Reply by andrewstanfordjasonJuly 30, 2017

Thanks, that's even better.

[ - ]
Reply by jmarceloldJuly 30, 2017

To reduce LUT length, use abs(x) as LUT address, instead of re(x) and image(x). 

If you want to further reduce LUT, you can convert abs(x)=M*2^E, where M is a short mantissa and E is the exponent. Them you use M as address for a LUT to obtain G=d/M, and apply a gain of y = (x*G)>>E. 


[ - ]
Reply by dszaboJuly 30, 2017

What kind of processor are you using?  To calculate abs(x) you need a pair of multiplies and an addition. If x is complex the divide is actually two divides. I would think that using a part with a divide instruction (Cortex M3 or M4, for example) it would be faster to just use divides than a lookup table or pair of lookup tables

[ - ]
Reply by andrewstanfordjasonJuly 30, 2017

I'm using an xcore processor. On which divides can be about 10 times the cost of a multiply from a LUT.

[ - ]
Reply by dszaboJuly 30, 2017

Snap!  Fair enough

[ - ]
Reply by rrlagicJuly 30, 2017

CConsider multiplicative inverse to replace division with multiplications. Two to three Newton iterations will give enough accuracy. There is some reading on wiki, and ready to use formulae in www.ti.com/lit/an/sprabg7/sprabg7.pdf, clause 3.1.5.

[ - ]
Reply by Y(J)SJuly 30, 2017

There are many tricks for finding the reciprocal, the sqrt of sum of squares, and the reciprocal of the sqrt sum of squares.

Search for Goldschmidt's algorithm and Pythagorean addition.

Y(J)S