代码搜索:Multiplication

找到约 1,176 项符合「Multiplication」的源代码

代码结果 1,176
www.eeworm.com/read/116193/14983399

cpp carrycrt.cpp

#include "ap.h" // Carry & Chinese Remainder Theorem for fnt-multiplication (and square) // Returns 1 if right shift ocurred // Assume that ds1 will be in memory if possible int carrycrt (ap
www.eeworm.com/read/459110/1574057

java wnafmultiplier.java

package org.bouncycastle.math.ec; import java.math.BigInteger; /** * Class implementing the WNAF (Window Non-Adjacent Form) multiplication * algorithm. */ class WNafMultiplier implements ECMultip
www.eeworm.com/read/293917/3927455

cpp fig10_38.cpp

/** * Standard matrix multiplication. * Arrays start at 0. * Assumes a and b are square. */ matrix operator*( const matrix & a, const matrix & b ) { int n = a.numrows( );
www.eeworm.com/read/420803/2060746

c dct36.c

/* // This is an optimized DCT from Jeff Tsay's maplay 1.2+ package. // Saved one multiplication by doing the 'twiddle factor' stuff // together with the window mul. (MH) // // This uses Byeong G
www.eeworm.com/read/266537/11220127

c matrix.c

/* University of Ulm Programming Contest 1996 Problem G: Matrix Chain Multiplication Implementation: Mark Dettinger */ #include typedef struct {int mults; int rows; int cols;} triple
www.eeworm.com/read/205036/15328862

m times.m

function C = times(A,B) %TIMES Array multiplication for sparse tensors. % % TIMES(A,B) is called for the syntax 'A .* B' when A or B is a % sparse tensor. A and B must have the same size, unless
www.eeworm.com/read/205036/15328976

m mtimes.m

function C = mtimes(A,B) %MTIMES Implement scalar multiplication for a ttensor. % % See also TTENSOR. % %MATLAB Tensor Toolbox. %Copyright 2007, Sandia Corporation. % This is the MATLAB Tensor Too
www.eeworm.com/read/427960/8908610

tpl mrcomba.tpl

/* * MIRACL Comba's method for ultimate speed modular multiplication * mrcomba.tpl * * See "Exponentiation Cryptosystems on the IBM PC", IBM Systems * Journal Vol. 29 No. 4 1990. Co
www.eeworm.com/read/184067/9123705

m fzmult.m

function [W,L,U,pcol,P] = fzmult(A,V,transpose,L,U,pcol,P); %FZMULT Multiplication with fundamental nullspace basis. % W = FZMULT(A,V) Computes the product of a % a fundamental basis for the n
www.eeworm.com/read/178172/9416699

c idigitkara.c

/* Integer Version 2.0, RD, 20.1.93 idigitkara.c */ /* Karatsuba method for multiplication of long integers. */ /* Parameters optimized for Sparc Version. */ #include #include