I have measured points on a two dimensional square lattice.
.
How can I fit the data to a square lattice? I guess some methods like curve fitting or least square approximation would work, but I couldn't find any literature for the same problem.
- the lattice has discrete points
- the lattice is modeled with multiple parameters: translation (
x0
andy0
), rotation (θ
), lattice spacing (d
), and it cannot be represented asy=f(x; a,b,...)
form.
TLDR; not possible (without punishment for fine lattices)
So I had the same question and I researched why it isn't possible. I show that for every
n
rational points,x1, ... , xn
there exists some rationalq, b
such that for everyi
there exists an integerz
such thatxi = z * q + b
.Proof by induction:
base case:
We start at
n=2
, for that, chooseq = x1 - x0
andb = x0
assumption:
let there be
x1, ..., xn+1
rational points. Then for the firstn
points, there exists some rationalq, b
such that for everyi<=n
there exists an integerz
such thatxi = z * q + b
inductive step:
take
q, b
from the assumption. We find a natural number beta such thatq' := q / s, b
satisfies the assumption fori<=n+1
.Indeed, for every natural number and
i<=n
, whenxi = z * q + b
, then alsoxi = z * s * q' + b
Now we have to choose a natural
s
, such thatx := xn+1 = z * q' + b
for an integerz
.I will derive
s
and it will also be a proof that such as
exists. Definebeta
throughx = beta * q + b
. Because every number exceptbeta
is rational, so isbeta
:beta = u / v
define
s := v
Then it holds:
x = beta * q + b = u / v * q + b = u / v * s * q' + b = u * q' + b
whereu
is an integer.Empirical Proof
using the formulas from the proof, I made a python program that finds for arbitrary fractions the perfect lattice:
keep in mind this also holds for multiple dimensions of the space (they are independent) and also for multiple dimensions of the lattice (just set the other vectors to zero)