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

    function Y=ellipticCPi(N, M)
%ELLIPTICCPI  Complementary complete elliptic integral of the third kind
%   Y = ellipticCPi(N, M) returns the complementary complete elliptic integral
%   of the third kind, evaluated for each pair of elements of N and M.
%
%   See also SYM/ELLIPKE, SYM/ELLIPTICE, SYM/ELLIPTICK, SYM/ELLIPTICCE, SYM/ELLIPTICCK,
%   SYM/ELLIPTICF, SYM/ELLIPTICPI

% Copyright 2012 The MathWorks, Inc.
Y = sym.useSymForNumeric(@ellipticCPi, N, M);