GY-63_MS5611/libraries/DistanceTable/readme.md

17 lines
504 B
Markdown
Raw Normal View History

2017-07-27 10:24:22 -04:00
# DistanceTable Library
## Description
The DistanceTable library is a class that stores a distance table which is typically x * x entries
in less memory space. It uses x * (x-1)/2 ("in a triangle") as an eucledian distance table is
symmetrical around its main diagonal. Furthermore the main diagonal are all zero.
An ATMEL328 (Arduino) can store a 30x30 matrix = 900 floats in 1740 bytes. Normally this amount
would approx hold a 21x21 matrix (1764 bytes).
## Operational
Trivial, see examples.