約121,000件1ページ目

日本語のみで絞り込む

2011/4/25 -You can use std::numeric_limits<double>::is_iec559() to check if a particular floating point type is represented according to IEEE 754.

2023/4/13 -Write a program to find out the 32 Bits Single Precision IEEE 754 Floating-Point representation of a given real value and vice versa.

2021/8/3 -The IEEE-754 standard describes floating-point formats, a way to represent real numbers in hardware. There are at least five internal formats ...

I'm trying to convert 4 different hex registers that i receive from device through getc() into a float variable using IEEE 754 format.

This is a single header file C++ library that provides IEEE 754 floating point types. Example usage:

2024/4/4 -IEEE 754 conforming floating point arithmetic has rounding errors. The rounding errors are well defined and reproducible, ...

A.その模範解答の環境(gcc?)はintが 8バイトなんだろね。 Visual C++は64bitのOSでもintは4バイトだから下位4バイトしか出力されないんだと思う。 http://ja.m....

2018/6/16 -IEEE 754 requires that the result of any operation is equal to the value you get when you take the exact value of the operation and then round ...

The 64-bit IEEE-754 format can be used in C++ by using the double data type. You will see that a double doesn't double every field, but instead gives you a ...

This paper demonstrates a simple technique in C/C++ to isolate the bit fields of floating-point data formats, aiding in the analysis of a floating-point number.

2019/1/22 -This article will show how to convert a float value into an integer according to IEEE 754 rules. I will show two ways. One is faster than the other one.