Created
March 18, 2016 18:00
-
-
Save senhorinha/a31076220315c273e9d9 to your computer and use it in GitHub Desktop.
18/03 - errors, arredondamento etc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
format long | |
x_default_format = 0.1 | |
x_single_format = single(0.1) | |
printf("\nx_default_formatt: %.25f\n", x_default_format) | |
big_mp_on_32_bits = single(3.4e38) | |
little_mp_on_32_bits = single(1.e-45) | |
big_mp_on_64_bits = double(1.797e308) | |
little_mp_on_64_bits = double(4.94e-324) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment