From fe6485ef782644bc7958afe2531c3350ed090e6c Mon Sep 17 00:00:00 2001 From: Mike Kamermans Date: Mon, 13 Mar 2017 08:28:38 -0700 Subject: [PATCH] change "weight matrix" to "coefficients matrix" --- components/sections/matrix/content.en-GB.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/sections/matrix/content.en-GB.md b/components/sections/matrix/content.en-GB.md index 95e05664..4ae837e3 100644 --- a/components/sections/matrix/content.en-GB.md +++ b/components/sections/matrix/content.en-GB.md @@ -1,6 +1,6 @@ # Bézier curvatures as matrix operations -We can also represent Bézier as matrix operations, by expressing the Bézier formula as a polynomial basis function, the weight matrix, and the actual coordinates as matrix. Let's look at what this means for the cubic curve: +We can also represent Bézier as matrix operations, by expressing the Bézier formula as a polynomial basis function and a coefficients matrix, and the actual coordinates as matrix. Let's look at what this means for the cubic curve: \[ B(t) = P_1 \cdot (1-t)^3 + P_2 \cdot 3 \cdot (1-t)^2 \cdot t + P_3 \cdot 3 \cdot (1-t) \cdot t^2 + P_4 \cdot t^3