Binary floating point summation

Binary floating point summation 2.3

Binary floating point summation 2.3 Download Summary

  • Language: Python
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • License: Other Free / Open Source License - Python License
  • Databases: N/A
  • Downloads: 389
  • Released: Jun 7, 2007

Binary floating point summation 2.3 Description

This script eliminates completely  rounding errors and loss of significance due to catastrophic cancellation during summation.

It  achieves exactness by keeping full precision intermediate subtotals. Offers three alternative approaches, each using a different technique to store exact subtotals.
ach using/>

Binary floating point summation Bookmark

Hyperlink code:
Hyperlink for Forum code:

Binary floating point summation 2.3 Script Download Notice

Top 4 Download periodically updates information of Binary floating point summation 2.3 script from the developer, but some information may be slightly out-of-date.

Our script download links are directly from our mirrors or publisher's website. Binary floating point summation 2.3 torrent files or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, MailBigFile, DropSend, HellShare, HotFile, FileServe, MediaMax, zUpload, MyOtherDrive, SendSpace, DepositFiles, Letitbit, LeapFile, DivShare or MediaFire, are not allowed!

Binary search in one line

This is an implementation of the binary search algorithm in (almost) one line. Given a number 'n' and a list 'L', the function returns the index of the number on the list, or -1. ...
Python

Easy binary2decimal and decimal2binary

This script allows you to convert binary numbers to decimal and vice-versa in the most straightforward way. ...
Python

Convex hull and diameter of 2d point sets

... of vertices) and the diameter (farthest pair of points), given input consisting of a list of 2d points represented as pairs (x,y). The convex hull algorithm ... taken handling tricky cases such as pairs of points with the same x-coordinate and colinear triples of points. ...
Python

Fixed Start End Point Multiple Traveling Salesmen Problem Genetic Algorithm

... original starting place).Each salesman starts at the first point, and ends at the first point, but travels to a unique set of cities in between. Except for the first, each city is visited by exactly one salesman.This tool provides ...
Matlab

An interval mapping data structure

... can then query the structure for a given point, and it returns the value associated to the interval which contains the point.Boundary values don't need to be an integer ; in the test unit a date-time object is used. the testThis class uses bisect to ensure ...
Python