bernsteinMatrix

Bernstein matrix

📝 Syntax

  • B = bernsteinMatrix(n, t)

📥 Input argument

  • n - nonnegative integer: Approximation order.

  • t - number or vector: Evaluation point.

📤 Output argument

  • B - Bernstein Matrix: length(t) - by - n+1 matrix.

📄 Description

B = bernsteinMatrix(n, t) constructs a Bernstein matrixB with dimensions length(t) - by - (n+1), where t is a vector.

The Bernstein matrix is also referred to as the Bezier matrix.

This function can be utilized to calculate the points of a Bezier curve.

💡 Example

🕔 History

Version
📄 Description

1.5.0

initial version

Last updated

Was this helpful?