Fast divisions in C++

Started by
1 comment, last by Seriema 21 years, 1 month ago
Hi! Wondering, how do I make fast divisions in C++ using float''s? thanx "No lies of sugar can sweeten the sournes of reality" }+TITANIUM+{ A.K.A. DXnewbie[onMIRC]
[ ThumbView: Adds thumbnail support for DDS, PCX, TGA and 16 other imagetypes for Windows XP Explorer. ] [ Chocolate peanuts: Brazilian recipe for home made chocolate covered peanuts. Pure coding pleasure. ]
Advertisement
http://www.stereopsis.com/2div.html
Load the exponent part and shift it? More practical is if you are repeatedly doing divisions by the same number then store the reciprocal and multiply instead. A divide and multiply takes longer than a divide, but a divide and two multiplies is faster than two divides. So you have to be dividing by the same number at least twice.
Keys to success: Ability, ambition and opportunity.

This topic is closed to new replies.

Advertisement