Bezier Curve Function
Version 1.0.0.0 (1.37 KB) by
Prakash Manandhar
Vectorized function to calculate Bezier Curve
This function constructs a Bezier curve from given control points. P is a vector of control points. N is the number of points to calculate.
Example:
P = [0 0; 1 1; 2 5; 5 -1];
x = (0:0.0001:5);
y = BezierCurve(length(x), P);
plot(x, y, P(:, 1), P(:, 2), 'x-', 'LineWidth', 2); set(gca, 'FontSize', 16)
Cite As
Prakash Manandhar (2026). Bezier Curve Function (https://uk.mathworks.com/matlabcentral/fileexchange/34902-bezier-curve-function), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Created with
R2010b
Compatible with any release
Platform Compatibility
Windows macOS LinuxCategories
Find more on Interpolation in Help Center and MATLAB Answers
Tags
Acknowledgements
Inspired by: Bezier Curve Plotter
Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
| Version | Published | Release Notes | |
|---|---|---|---|
| 1.0.0.0 |
