⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getcurv2.m

📁 演示matlab曲线拟和与插直的基本方法
💻 M
字号:
%% Spline curves
% Demonstrating the use of CSCVN.

% Copyright 1987-2005 C. de Boor and The MathWorks, Inc.
% $Revision: 1.16.4.2 $

%% Selecting the points
% The spline toolbox will draw a smooth curve through a list of points, in
% the order in which they are received.
% You could use the Spline Toolbox command GETCURVE if you wanted the input
% such a list of points interactively.
% Here, we select random points, storing them in the array XY,
% one point per  c o l u m n .

npts = 10;
xy = [randn(1,npts); randn(1,npts)];
plot(xy(1,:),xy(2,:),'ro','LineWidth',2);
text(xy(1,:), xy(2,:),[repmat('  ',npts,1), num2str((1:npts)')])
set(gca,'XTick',[],'YTick',[])

%% Connecting the points
% The curve is constructed by
%
%  >> cv = cscvn(xy);
%
% and plotted by
%
%  >> fnplt(cv,'r',2)

hold on
fnplt(cscvn(xy),'r',2)
hold off

%% 3-D spline curves
% Notice that it's just as easy to create spline curves in three dimensions.
% This time, we'll do something less random. First, we generate the points:
npts = 13;
t = linspace(0,8*pi,npts); z = linspace(-1,1,npts); omz = sqrt(1-z.^2);
xyz = [cos(t).*omz; sin(t).*omz; z];
plot3(xyz(1,:),xyz(2,:),xyz(3,:),'ro','LineWidth',2);
text(xyz(1,:),xyz(2,:),xyz(3,:),[repmat('  ',npts,1), num2str((1:npts)')])
set(gca,'XTick',[],'YTick',[],'ZTick',[])
box on

%% Connecting the points
% Here is the 3D spline curve through these points provided by CSCVN.
% By appending the first point to the end of the list,
% we get a smooth  c l o s e d  curve.

hold on
fnplt(cscvn(xyz(:,[1:end 1])),'r',2)
hold off
% axis vis3d


displayEndOfDemoMessage(mfilename)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -