代码搜索:Multiplication
找到约 1,176 项符合「Multiplication」的源代码
代码结果 1,176
www.eeworm.com/read/441245/7672872
m mtimes.m
%MTIMES Dataset overload of *
%
% C = A*B
%
% This routines handles the dataset multiplication in case A or B is
% a dataset and none of these is a mapping. A or B may be a cell array
% of datasets
www.eeworm.com/read/197261/8008869
m gpoly.m
%Generator Polynomial
%Initialize ppr and dpr tables
rsprp
%GF size
n=8;
%Polynomial order
m=16;
%Initialization
gp=-1*ones(1,m+1);
%Set up for m=1
gp(1)=0;
gp(2)=1;
%Multiplication loop
www.eeworm.com/read/396243/8118355
m ex0109.m
function ex0109()
N = 100000;
a = [1:N];
x = 1;
tic % initialize the timer
p1 = sum(a.*x.^[N-1:-1:0]); %plain multiplication
p1, toc % measure the time passed from the time of executing ’tic’
www.eeworm.com/read/333167/12700170
s math.s
.module math.c
.area text(rom, con, rel)
.dbfile ./math.c
.dbfunc e Addition _Addition fV
_Addition::
.dbline -1
.dbline 21
; #include //Place the include file here. '..\. us
www.eeworm.com/read/246680/12712957
m ex0109.m
function ex0109()
N = 100000;
a = [1:N];
x = 1;
tic % initialize the timer
p1 = sum(a.*x.^[N-1:-1:0]); %plain multiplication
p1, toc % measure the time passed from the time of executing ’tic’
www.eeworm.com/read/244387/12869430
c timestab.c
/*
* File: timestab.c
* ----------------
* Generates a multiplication table where each axis
* runs from LowerLimit to UpperLimit.
*/
#include
#include "genlib.h"
/*
* Constants
* --
www.eeworm.com/read/244284/12874955
ew menu.ew
..............MENU for Madelung potential ...........
......... Change these parameters if necessary: .....
1. Point of interest: ....... undefined .......
3. Charges on species: ....... und
www.eeworm.com/read/244284/12875079
plot-line1 menu.plot-line1
..............CUSTOMISATION ......................
..... Change these parameters if necessary:...
1. Resolution for the plot = 160
2. Low chop = 0.00 {disabled}
3. High chop = 0.00
www.eeworm.com/read/142539/12940996
c fig10_38.c
#include
typedef double Matrix[ 2 ][ 2 ];
/* START: fig10_38.txt */
/* Standard matrix multiplication */
/* Arrays start at 0 */
void
MatrixMultipl
www.eeworm.com/read/241867/13111213
c utils.c
/* utils.c
*
* 32 bit fractional multiplication. Requires 64 bit integer support.
*/
/* Fractional multiply. */
long mul(long x, long y)
{
return (long)(((long long)x * (long long)y) >> 32);
}