Floating-point

с плавающей запятой [точкой] Смотри также: floating point Например: The 486 microprocessor allowed concurrent execution of a single floating-point instruction along with a single integer instruction — Микропроцессор 486 позволял одновременно с командой с плавающей запятой исполнять команду целочисленной арифметики

Англо-русский словарь компьютерных терминов

Floating-point

adjective expressed in, using, or being a mathematical notation in which a number is represented (as in a computer display) by an integer or a decimal fraction multiplied by a power of the number base indicated by an exponent (as in 4.52E2 for 452) — compare fixed-point

Merriam-Webster's Collegiate Dictionary

Floating-point

A number representation consisting of a mantissa, M, an exponent, E, and a radix (or "base"). The number represented is M*R^E where R is the radix. In science and engineering, exponential notation or scientific notation uses a radix of ten so, for example, the number 93,000,000 might be written 9.3 x 10^7 (where ^7 is superscript 7). In computer hardware, floating point numbers are usually represented with a radix of two since the mantissa and exponent are stored in binary, though many different representations could be used. The IEEE specify a standard representation which is used by many hardware floating-point systems. Non-zero numbers are normalised so that the binary point is immediately before the most significant bit of the mantissa. Since the number is non-zero, this bit must be a one so it need not be stored. A fixed "bias" is added to the exponent so that positive and negative exponents can be represented without a sign bit. Finally, extreme values of exponent (all zeros and all ones) are used to represent special numbers like zero and positive and negative infinity. In programming languages with explicit typing, floating-point types are introduced with the keyword "float" or sometimes "double" for a higher precision type. See also floating-point accelerator, floating-point unit. Opposite: fixed-point.

Free Online Dictionary of Computing