词条 | Binary scaling |
释义 |
Binary scaling is a computer programming technique used typically in embedded C, DSP and assembler programs to implement pseudo floating point operations by using the native integer arithmetic of the processor. OverviewA representation of a floating point value using binary scaling is more precise than a floating point representation occupying the same number of bits, but cannot represent values beyond the range that it represents, thus more easily leading to arithmetic overflow during computation. Implementation of operations using integer arithmetic instructions is often (but not always) faster than the corresponding floating point instructions. A position for the 'binary point' is chosen for each variable to be represented, and binary shifts associated with arithmetic operations are adjusted accordingly. The Binary scaling corresponds in Q (number format) to the first digit, i.e. Q1.15 is a 16 bit integer scaled with one bit as integer and fifteen as fractional. A Bscal 1 or Q1.15 number would represent approx 1.999 to -2.0 as floating point. To give an example, a common way to use integer arithmetic to simulate floating point, using 32 bit numbers, is to multiply the coefficients by 65536. Using binary scientific notation, this will place the binary point at B16. That is to say, the most significant 16 bits represent the integer part the remainder are represent the fractional part. This means, as a signed two's complement integer B16 number can hold a highest value of and a lowest value of −32768.0. Put another way, the B number, is the number of integer bits used to represent the number which defines its value range. Remaining low bits (i.e. the non-integer bits) are used to store fractional quantities and supply more accuracy. For instance, to represent 1.2 and 5.6 as B16 one multiplies them by 216, giving 78643 and 367001. Multiplying these together gives To convert it back to B16, divide it by 216. This gives 440400B16, which when converted back to a floating point number (by dividing again by 216, but holding the result as floating point) gives 6.71999. The correct floating point result is 6.72. Re-scaling after multiplicationThe example above for a B16 multiplication is a simplified example. Re-scaling depends on both the B scale value and the word size. B16 is often used in 32 bit systems because it works simply by multiplying and dividing by 65536 (or shifting 16 bits). Consider the Binary Point in a signed 32 bit word thus: 0 1 2 3 4 5 6 7 8 9 S X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X where S is the sign bit and X are the other bits. Placing the binary point at
When using different B scalings and/or word sizes the complete B scaling conversion formula must be used. Consider a 32 bit word size, and two variables, one with a B scaling of 2 and the other with a scaling of 4. Note that here the 1.4 values is very well represented with 30 fraction bits. A 32 bit floating-point number has 23 bits to store the fraction in. This is why B scaling is always more accurate than floating point of the same word size. This is especially useful in integrators or repeated summing of small quantities where rounding error can be a subtle but very dangerous problem when using floating point. Now a larger number 15.2 at B4. The number of bits to store the fraction is 28 bits. Multiplying these 32 bit numbers give the 64 bit result {{mono|0x1547AE14A51EB852}} This result is in B7 in a 64 bit word. Shifting it down by 32 bits gives the result in B7 in 32 bits. To convert back to floating point, divide this by {{code|1=(2^(wordsize-7-1)) == 21.2800000099}} Various scalings may be used. B0 for instance can be used to represent any number between -1 and 0.999999999. {{anchor|BAM}}Binary anglesBinary angles are mapped using B0, with 0 as 0 degrees, 0.5 as 90° (or ), −1.0 or 0.9999999 as 180° (or π) and −0.5 as 270° (or ). When these binary angles are added using normal two's complement mathematics, the rotation of the angles is correct, even when crossing the sign boundary (this of course does away with checks for angle ≥ 360° when handling normal degrees[1]). The terms binary angular measurement (BAM)[2] and binary angular measurement system (BAMS)[3] as well as brads (binary radians or binary degree) refer to implementations of binary angles. They find use in robotics, navigation,[4] computer games,[5] and digital sensors.[6] No matter what bit-pattern is stored in a binary angle, when it is multiplied by 180° (or π) using standard signed fixed-point arithmetic, the result is always a valid angle in the range of −180° degrees (−π radians) to +180° degrees (+π radians). In some cases, it is convenient to use unsigned multiplication (rather than signed multiplication) on a binary angle, which gives the correct angle in the range of 0 to +360° degrees (+2π radians or +1 turn). Compared to storing angles in a binary angle format, storing angles in any other format inevitably results in some bit patterns giving "angles" outside that range, requiring extra steps to range-reduce the value to the desired range, or results in some bit patterns that are not valid angles at all (NaN), or both. Application of binary scaling techniquesBinary scaling techniques were used in the 1970s and 1980s for real-time computing that was mathematically intensive, such as flight simulation. The code was often commented with the binary scalings of the intermediate results of equations. Binary scaling is still used in many DSP applications and custom made microprocessors are usually based on binary scaling techniques. Binary scaling is currently used in the DCT used to compress JPEG images in utilities such as GIMP. Although floating point has taken over to a large degree, where speed and extra accuracy are required, binary scaling works on simpler hardware and is more accurate when the range of values is known in advance.{{Clarify|date=March 2016|post-text=→talk}} See also{{Portal|Computer Science}}
References1. ^Angles, integers, and modulo arithmetic Shawn Hargreaves, blogs.msdn.com {{DEFAULTSORT:Binary Scaling}}2. ^{{cite web |url=http://www.tpub.com/content/fc/14100/css/14100_314.htm |title=Binary angular measurement |archive-url=https://web.archive.org/web/20091221160257/http://www.tpub.com/content/fc/14100/css/14100_314.htm |archive-date=2009-12-21}} 3. ^{{cite web |url=http://acronyms.thefreedictionary.com/Binary+Angular+Measurement+System |title=Binary Angular Measurement System |work=acronyms.thefreedictionary}} 4. ^Real-Time Systems Design and Analysis Chapter 7.5.3, Binary Angular Measure , Phillip A. LaPlante, page via www.globalspec.com 5. ^Doom 1993 code review Fabien Sanglard, section "Walls", 13/1/2010, fabiensanglard.net 6. ^Hitachi HM55B Compass Module (#29123) {{webarchive |url=https://web.archive.org/web/20110711172521/http://www.hobbyengineering.com/specs/PX-29123.pdf |date=July 11, 2011 }} pdf via www.parallax.com via www.hobbyengineering.com 1 : Binary arithmetic |
随便看 |
|
开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。