代码搜索:overloading
找到约 1,176 项符合「overloading」的源代码
代码结果 1,176
www.eeworm.com/read/162614/5522015
c t136.c
// { dg-do assemble }
// GROUPS niklas overloading
extern "C" void f (char*);
void f (const char*) {}
www.eeworm.com/read/162614/5523583
ada c67002c.ada
-- C67002C.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/294203/8246663
m isnan.m
function tf = isnan(A)
% ISNAN True for Not-a-Number.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/294203/8246703
m imag.m
function p = imag(q)
% IMAG Imaginary part of a quaternion.
% (Quaternion overloading of standard Matlab function.)
%
% This function returns the quaternion that is the imaginary
% part of q. If q i
www.eeworm.com/read/294203/8246838
m inv.m
function R = inv(a)
% INV Inverse of a quaternion (matrix).
% (Quaternion overloading of standard Matlab function.)
%
% For a single quaternion, this function computes the inverse,
% that is the con
www.eeworm.com/read/294203/8246996
m eq.m
function r = eq(a, b)
% == Equal.
% (Quaternion overloading of standard Matlab function.)
%
% If one of the operands is not a quaternion and the other has zero vector part,
% the result is obtained b
www.eeworm.com/read/203890/15349774
m plus.m
function c = plus(a,b)
% overloading of operator +
% $Id: plus.m 39 2004-08-06 09:05:50Z mairas $
if isa(a,'spectrum') & isnumeric(b)
c = spectrum(a.s + b, a.frequency);
elseif isnumeric(a) & isa
www.eeworm.com/read/203890/15349776
m times.m
function c = times(a,b)
% overloading of operator .*
% $Id: times.m 3 2004-02-04 12:57:04Z mairas $
if isa(a,'spectrum') & isa(b,'spectrum') & a.frequency==b.frequency
c = spectrum(a.s .* b.s,a.f
www.eeworm.com/read/203890/15349779
m minus.m
function c = minus(a,b)
% overloading of operator -
% $Id: minus.m 39 2004-08-06 09:05:50Z mairas $
if isa(a,'spectrum') & isnumeric(b)
c = spectrum(a.s - b, a.frequency);
elseif isnumeric(a) & i
www.eeworm.com/read/203890/15349784
m mtimes.m
function c = mtimes(a,b)
% overloading of operator *
% $Id: mtimes.m 3 2004-02-04 12:57:04Z mairas $
if isa(a,'spectrum') & isa(b,'spectrum')
error('Matrix multiplication of two spectra not suppo