puntoflotante.org
La Guía del Punto Flotante - Cheat sheet de punto flotante para Perl
http://puntoflotante.org/languages/perl
Cheat sheet de punto flotante para Perl. Tipos de punto flotante. Perl soporta números de punto flotante nativos de la plataforma como valores escalares; en la práctica esto significa precisión doble del IEEE 754. Perl también puede almacenar números decimales como cadenas, pero los operadores aritméticos integrados los convertirán a enteros o a valores de punto flotante para realizar la operación. Proporciona un tipo decimal. Use Number: Fraction ':constants'; my $f = '1/2' - '1/3'; # Devuelve 1/6.
neo.dmcs.pl
Computer Science I
http://neo.dmcs.pl/csI/index.html
IFE, Telecommunication and Computer Science, Computer Science, IV sem. Tutorial, Labs, Exam and Final (update 5.07.2016). Final mark is 60% exam 20% labs 20% tutorial, all must be positive. 1 Term : 29 June 2016 (Wednesday), 12:00, aula A2, K-25, building B18. 2 Term : 5 July 2016 (Tuesday), 12:00, aula A2, K-25, building B18. 3 Term : 9 September 2016 (Friday), 10-12, aula A2, K-25, building B18. Lecture notes (to be provided in due time):. Digital System Basics - Brief Recollection.
phplabor.wordpress.com
Der Developers Shame Day | Rudi's PHP Labor
https://phplabor.wordpress.com/2010/10/28/der-developers-shame-day
Rudi's PHP Labor. 8222;The Social Network“ – ein Film von und für Programmierer. Der Developers Shame Day. Oktober 28, 2010. Am 3 November ist Developer Shame Day. 8211; eine Erfindung von Cem dem PHP Hacker. Ich bin dabei… mein Scham-Code ist schon in der Pipeline. Schreibe einen Kommentar Antworten abbrechen. Gib hier Deinen Kommentar ein . Trage deine Daten unten ein oder klicke ein Icon um dich einzuloggen:. Adresse wird niemals veröffentlicht). Du kommentierst mit Deinem Twitter-Konto. ( Abmelden.
blog.danielnegri.com
Applied Math and Engineering: What Every Programmers Should Know About Floating-Point Arithmetic - Erlang
http://blog.danielnegri.com/2011/12/what-every-programmers-should-know.html
Applied Math and Engineering. Thursday, December 15, 2011. What Every Programmers Should Know About Floating-Point Arithmetic - Erlang. Erlang case - Why don't my numbers add up? So, open try this sample at your console:. Eshell V5.7.4 (abort with G). 1 01 0.2. You got a really unexpected result:. Maybe you asked for help on some forum and got pointed to a *long article with lots of formulas* that didn't see to help with your problem. Well, this site is here to:. Tell you know to deal with this problem.
zeropointshift.com
Uncategorized Archives | Brandon Rozek
http://zeropointshift.com/category/uncategorized
Front-End Developer who helps build websites. Pass the password manager. August 16, 2016. Looking over the list of programs installed on my computer, one of my all time favorites is a program called Pass. It’s a program available under most Linux distributions, Mac OS X (through Brew. It stores all of the passwords using gpg encryption and stores them as actual files on the hard disk. Meaning if you wanted, you can sync them to all your devices! This program assumes a light familiarity with the terminal.
tech.taskrabbit.com
TechRabbit: Big Decimal
http://tech.taskrabbit.com/blog/2015/06/04/big-decimal
We’re a tight-knit team that’s passionate about building a solution that helps people by maximizing their time, talent and skills. We are actively hiring for our Engineering and Design teams. Click To Learn more. People have hourly rates for the tasks that they do. They get paid based on the number of hours that they work. Hourly rate in cents. Hourly rate in cents. Hourly rate in cents. Seconds in an hour. Hourly rate in cents. Since then, we have switched to using BigDecimal. Hourly rate in cents.
puntoflotante.org
La Guía del Punto Flotante - Respuestas básicas
http://puntoflotante.org/basic
Por qué al sumar mis números, como 0.1 0.2, en vez de dar 0.3 da un resultado extraño como 0.30000000000000004? Porque internamente, los ordenadores usan un formato ( punto flotante. Que no puede representar de forma precisa números como 0.1, 0.2 o 0.3. Cuando el código es compilado o interpretado, tu 0.1 se redondea al número más cercano en ese formato, lo que resulta en un pequeño error de redondeo. Incluso antes de que se haga la operación. Por qué los ordenadores usan un sistema tan estúpido? Eg hace...
puntoflotante.org
La Guía del Punto Flotante - Tipos exactos
http://puntoflotante.org/formats/exact
Aunque los números de punto flotante. Son mejores para que los ordenadores trabajen con ellos, y lo bastante buenos para los humanos, a veces simplemente no son apropiados. En ocasiones los números de verdad tienen que sumarse bien hasta el último bit, y no hay excusas técnicas aceptables normalmente cuando los cálculos involucran dinero. Cada lenguaje o plataforma tiene su propia solución, y a veces más de una. Para más detalles, puedes ver las cheat sheets de los lenguajes. Decimal de precisión limitada.