1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-30 11:40:27 +02:00

typo in curve fitting T matrix

This commit is contained in:
Pomax
2019-08-24 08:53:04 -07:00
parent 38cb467e46
commit 1fcaa1c1bb
6 changed files with 7 additions and 6 deletions

View File

@@ -197,11 +197,11 @@ This leaves one problem: **T** isn't actually the matrix we want: we don't want
\[
𝕋 = \begin{bmatrix}
s^0_1 & s^1_1 & ... & s^{n-1}_1 & s^{n-1}_1 \\
s^0_1 & s^1_1 & ... & s^{n-2}_1 & s^{n-1}_1 \\
& & & & \\
\vdots & & ... & & \vdots \\
& & & & \\
s^0_n & s^1_n & ... & s^{n-1}_n & s^{n-1}_n
s^0_n & s^1_n & ... & s^{n-2}_n & s^{n-1}_n
\end{bmatrix}
\]