gusucode.com > symbolic工具箱matlab源码程序 > symbolic/@double/gegenbauerC.m

    function Y = gegenbauerC(n, a, x)
%GEGENBAUERC   Gegenbauer polynomials.
%    Y = gegenbauerC(N,A,X) is the N-th ultraspherical polynomial.

%   Copyright 2014 The MathWorks, Inc.
narginchk(3, 3);
Y = sym.useSymForNumeric(@gegenbauerC, n, a, x); 
end