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

    function Y = chebyshevT(n, x)
%CHEBYSHEVT   Chebyshev polynomials of the first kind.

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