代码搜索:Multiplication
找到约 1,176 项符合「Multiplication」的源代码
代码结果 1,176
www.eeworm.com/read/206291/15297017
h cmplx.h
/* cmplx.h - complex arithmetic declarations */
#include /* in MSC and TC/BC, it declarares: */
/* \ttt{struct complex} and
www.eeworm.com/read/165810/5477220
cmp math.cmp
Addition and subtraction :
1 + 1 = 2
2 - 1 = 1
Multiplication, division, and modulus :
5 % 2 = 1
5 % 0 = $rem2
7 % 2 = 1
5 / 2 = 2
5 / 0 = $rem4
5 * 2 = 10
5 * -1 = -5
5 * -2 = -10
5 * -2 = -10
www.eeworm.com/read/162614/5524719
a c455001.a
-- C455001.A
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687 and
-- F08630-91-C-0015, the U.S. Government o
www.eeworm.com/read/474310/6819434
rpt pll.fit.rpt
Fitter report for pll
Mon May 04 10:14:38 2009
Quartus II Version 7.2 Build 151 09/26/2007 SJ Full Version
---------------------
; Table of Contents ;
---------------------
1. Legal Notice
www.eeworm.com/read/473219/6849150
m det.m
function d = det(X)
%DET (overloaded)
% Author Johan L鰂berg
% $Id: det.m,v 1.2 2004/07/01 11:17:09 johanl Exp $
n = X.n;
m = X.m;
if n~=m
error('Matrix must be square.');
else
www.eeworm.com/read/193277/8242441
m det.m
function d = det(X)
%DET (overloaded)
% Author Johan L鰂berg
% $Id: det.m,v 1.1 2006/08/10 18:00:19 joloef Exp $
n = X.dim(1);
m = X.dim(2);
if n~=m
error('Matrix must be square.');
www.eeworm.com/read/193277/8243276
m det.m
function d = det(X)
%DET (overloaded)
% Author Johan L鰂berg
% $Id: det.m,v 1.4 2006/07/26 20:17:57 joloef Exp $
n = X.dim(1);
m = X.dim(2);
if n~=m
error('Matrix must be square.');
www.eeworm.com/read/294203/8246604
m conv.m
function C = conv(A, B)
% CONV Convolution and polynomial multiplication.
% (Quaternion overloading of standard Matlab function.)
% Copyright