代码搜索:Multiplication

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

代码结果 1,176
www.eeworm.com/read/418219/10958041

html 14over.html

Operator Overloading
www.eeworm.com/read/314041/6955500

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/466944/7024135

java fig10_38.java

public class Fig10_38 { /* START: Fig10_38.txt */ /** * Standard matrix multiplication. * Arrays start at 0. * Assumes a and b are square. */
www.eeworm.com/read/197608/7069722

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/296254/7088962

java map.java

import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import java.util.Random; import javax.microedition.lcdui.Image; public class Map { GamePlay gy;
www.eeworm.com/read/166571/7095722

hpp sarrayops1.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/299984/7140185

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/460435/7250660

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/450608/7480271

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/443342/7634315

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’