Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nchimunyascripts/f-represation
Float Represantion
https://github.com/nchimunyascripts/f-represation
Last synced: 4 days ago
JSON representation
Float Represantion
- Host: GitHub
- URL: https://github.com/nchimunyascripts/f-represation
- Owner: nchimunyascripts
- Created: 2023-03-07T05:48:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-03-07T06:08:25.000Z (over 1 year ago)
- Last Synced: 2024-01-27T09:26:25.225Z (10 months ago)
- Language: Roff
- Size: 23.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
FLOAT REPRESENTATION
## [MANTISSA](docs/README.md)
* the part of a logarithm after the decimal point in math. (mathematics)
* the part of a floating-point number which represents the significant digits of that number. in omputer according to OXFORD DICTIONARY## [EXPONENT](README/CONTRIBUTING.md)
* An exponent refers to the number of times a number is multiplied by itself.
* For example, 2 to the 3rd (written like this: 23) means: 2 x 2 x 2 = 8. 23 is not the same as 2 x 3 = 6. according to What is an Exponent? [exponents](http://www.mclph.umn.edu/mathrefresh/exponents)## [BIAS](docs/CONTRIBUTING.md)
* Algorithmic bias describes systematic and repeatable errors in a computer system that create "unfair" outcomes, such as "privileging" one category over another in ways different from the intended function of the algorithm.### In IEEE 754 floating-point numbers, the exponent is biased in the engineering sense of the word
- the value stored is offset from the actual value by the exponent bias, also called a biased exponent.
- Biasing is done because exponents have to be signed values in order to be able to represent both tiny and huge values, but two's complement, the usual representation for signed values, would make comparison harder" accprding to wikipedia.```
[sign][biased exponent][significand]
[0][01111111][00000000000000000000000]
```