% Data points and Guidepoints used to generate the coefficients % of the parametric Hermite cubic polynomials in Bezier algorithm clear all; clc; close all; %Problem 3c in Burden-Faires Section 3.5 x=[0,4,6]; y=[0,6,1]; % Exiting guidepoints xma=[0.5,4.5]; yma=[0.5,5]; % Entering guidepoints xme=[0,3.5,7]; yme=[0,7,2]; N=3; NT=100; % % Another Data Set % % x=[0,4,6,8]; % y=[0,6,1,4]; % xma=[0.5,4.5,5]; % yma=[0.5,7,1]; % xme=[0,3.5,9,5]; % yme=[0,7,4,3]; % N=4; % NT=100; SBezier(x,y,xma,yma,xme,yme,N,NT);