代码搜索:Multiplication
找到约 1,176 项符合「Multiplication」的源代码
代码结果 1,176
www.eeworm.com/read/446006/7586893
py listing16-2.py
import unittest, my_math
class ProductTestCase(unittest.TestCase):
def testIntegers(self):
for x in xrange(-10, 10):
for y in xrange(-10, 10):
p = my_math.pro
www.eeworm.com/read/480070/6676293
hpp exprops2.hpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/406935/11432414
m calculate_b.m
function B = calculate_B( l, R )
% calculates separately B field components
% Copyright (C) 2007
%
% mag. David Erzen
% Faculty of Mechanical Engineering
% LECAD Lab
www.eeworm.com/read/346459/11743060
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/346459/11743075
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
www.eeworm.com/read/346459/11743191
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,'signal') & isa(b,'signal') & a.time==b.time
c = signal(a.s .* b.s,a.time);
elseif isa
www.eeworm.com/read/151476/12207721
hpp exprops2.hpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/230010/14309227
cpp mat_mult.cpp
#include
/*mat_mult-矩阵相乘子程序
*把n×p的矩阵A乘于q×r的矩阵B, 即C=A*B,得到n×r的矩阵C
*/
void mat_mult (float *A, int n, int p, float *B, int q, int r, float *C)
{
int i,j,k;
if (p != q)
{
www.eeworm.com/read/121515/14754826
hpp exprops2.hpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/114372/15056302
hpp exprops2.hpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde