bspderiv.m

来自「非均匀有理B样条的matlab程序」· M 代码 · 共 28 行

M
28
字号
function bspderiv
% 
% Function Name:
% 
%   bspdeval - Evaluate the control points and knot sequence of the derivative
%              of a univariate B-Spline.
% 
% Calling Sequence:
% 
%   [dc,dk] = bspdeval(d,c,k)
% 
% Parameters:
% 
%   d	: Degree of the B-Spline.
% 
%   c	: Control Points, matrix of size (dim,nc).
% 
%   k	: Knot sequence, row vector of size nk.
% 
%   dc	: Control points of the derivative
% 
%   dk	: Knot sequence of the derivative
% 
% Description:
% 
%   Evaluate the derivative of univariate B-Spline, which is itself a B-Spline.
%   This function provides an interface to a toolbox 'C' routine.

⌨️ 快捷键说明

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