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

📄 rsval.m

📁 演示matlab曲线拟和与插直的基本方法
💻 M
字号:
function values = rsval(rs,varargin)
%RSVAL Evaluate rational spline.
%
%   VALUES = RSVAL(RS,X)  returns the value at X of the rational spline
%   whose rBform or rpform is in RS.
%
%   Specifically, this means that the d-vector valued rational spline in
%   RS is evaluated at X with the aid of SPVAL or PPUAL as if it were an
%   ordinary (d+1)-vector valued spline, then each of the resulting values
%   is divided by its last entry (changed to 1 in case it is zero),
%   and then that last entry is omitted.
%
%   VALUES is a matrix of size [d*m,n] if the function in RS is
%   univariate and d-vector valued, and [m,n] is size(X) .
%
%   If the function in RS is m-variate with m>1 and d-vector valued, then
%
%                     [d,n],         if X is of size [m,n]
%   VALUES is of size [d,n1,...,nm], if d>1  and X is {X1,...,Xm}
%                     [n1,...,nm],   if d is 1 and X is {X1,...,Xm}
%
%   See also FNVAL, SPVAL, PPVAL, RSMAK, RPMAK.

%   Copyright 1987-2003 C. de Boor and The MathWorks, Inc.
%   $Revision: 1.12 $  $Date: 2003/04/25 21:12:23 $

if ~isstruct(rs)
   error('SPLINES:RSVAL:fnnotstruct','The first argument must be a structure.'), end

% treat rs as a spline in B-form or ppform:

switch rs.form(2)
case 'B', temp = fnval(fn2fm(rs,'B-'),varargin{:});
case 'p', temp = fnval(fn2fm(rs,'pp'),varargin{:});
otherwise
   error('SPLINES:RSVAL:fnnotrat','The function is not a rational spline.')
end

% divide each resulting (d+1)-vector by its last entry (having changed any
% zero entry to 1), then return only the first d entries:

d = fnbrk(rs,'dim'); temp(d+1,find(temp(d+1,:)==0)) = 1;

sv = size(temp);
if length(sv)<3 newsize = [d*sv(1)/(d+1),sv(2)];
else            newsize = [d,sv(2:end)];
end

temp = reshape(temp,d+1,prod(sv)/(d+1));
values = reshape(temp(1:d,:)./temp(repmat(d+1,d,1),:),newsize);

⌨️ 快捷键说明

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