马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
% example
% t=1:4;a=t;
% plplot(t,a);
function pkplot=pkplot(t,a)
axis([t(1) t(end) min(a) max(a)]);
hold on
% Initially, the list of points is empty.
xy = [];
n = 0;
% Loop, picking up the points.
disp('Left mous e button picks points.')
disp('Right mouse button picks last point.')
but = 1;
while but == 1
[xi,yi,but] = ginput(1);
plot(xi,yi,'ro')
n = n+1;
xy(:,n) = [xi;yi];
end
% Interpolate with a spline curve and finer spacing.
t = 1:n;
ts = 1: 0.1: n;
xys = spline(t,xy,ts);
xys
% Plot the interpolated curve.
plot(xys(1,:),xys(2,:),'b-');
hold off
[ 本帖最后由 eight 于 2007-11-28 10:09 编辑 ] |