代码搜索:overloading
找到约 1,176 项符合「overloading」的源代码
代码结果 1,176
www.eeworm.com/read/294203/8246968
m char.m
function str = char(q)
% CHAR Create character array (string).
% (Quaternion overloading of standard Matlab function.)
% Note: the Matlab char function converts arrays of numeric values into
% charac
www.eeworm.com/read/294203/8246971
m tril.m
function d = tril(v, k)
% TRIL Extract lower triangular part.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/294203/8246981
m double.m
function d = double(q)
% DOUBLE Convert quaternion to double precision (obsolete).
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/294203/8246984
m fix.m
function a = fix(q)
% FIX Round towards zero.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/294203/8246999
m isempty.m
function tf = isempty(q)
% ISEMPTY True for empty matrix.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/294203/8247001
m acosh.m
function Y = acosh(X)
% ACOSH Inverse hyperbolic cosine.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/174006/9612456
txt 2.5.txt
Listing 2.5 Overloading a Constructor Is Similar to Overloading a Regular Class
Method
using System;
namespace _6_Constructors
{
public class Television
{
public Television() : this(2)
{
}
p
www.eeworm.com/read/203890/15349771
m eq.m
function c=eq(a,b)
% overloading of operator ==
% $Id: eq.m 31 2004-07-28 10:46:46Z mairas $
if ~(isa(a,'frequency') & isa(b,'frequency'))
error('Both operands must be frequency objects');
end
t
www.eeworm.com/read/203890/15349800
m eq.m
function c=eq(a,b)
% overloading of operator ==
% $Id: eq.m 31 2004-07-28 10:46:46Z mairas $
if ~(isa(a,'spectrum') & isa(b,'spectrum'))
error('Both operands must be spectrum objects');
end
try
www.eeworm.com/read/203890/15349821
m eq.m
function c=eq(a,b)
% overloading of operator ==
% $Id: eq.m 47 2004-09-09 08:01:57Z mairas $
if ~(isa(a,'time') & isa(b,'time'))
error('Both operands must be time objects');
end
try
c = (a.beg