代码搜索:Multiplication
找到约 1,176 项符合「Multiplication」的源代码
代码结果 1,176
www.eeworm.com/read/139007/13195622
m strassenw.m
function C = strassenw(A, B, nmin)
%STRASSENW Strassen's fast matrix multiplication algorithm (Winograd variant).
% C = STRASSENW(A, B, NMIN), where A and B are matrices of dimension
%
www.eeworm.com/read/325216/13218186
txt keycode常数用法 .txt
KeyCode常数用法
--------------------------------------------------------------------------------
可在代码中的任何地方用下列常数代替实际值:
常数 值 描述
vbKeyLButton 0x1 鼠标左键
vbKeyRButton 0x2 鼠标右键
vbKeyC
www.eeworm.com/read/147980/5718506
txt keycode常数用法 .txt
KeyCode常数用法
--------------------------------------------------------------------------------
可在代码中的任何地方用下列常数代替实际值:
常数 值 描述
vbKeyLButton 0x1 鼠标左键
vbKeyRButton 0x2 鼠标右键
vbKeyC
www.eeworm.com/read/146392/5738486
java multiplicationtest.java
/* Copyright (c) 2000-2004 jMock.org
*/
package test.jmock.examples.calculator.expression;
import org.jmock.examples.calculator.Expression;
import org.jmock.examples.calculator.expression.Mult
www.eeworm.com/read/113030/6142226
h arithmetic.h
// Chapter 11 of C++ How to Program
// Debugging problem (arithmetic.h)
#ifndef ARITHMETIC_H
#define ARITHMETIC_H
// template class Arithmetic
template< T >
class Arithmetic {
public:
www.eeworm.com/read/101082/6241594
other rand_.c.other
/*
Uniform random number generator. Code courtesy of Bob Morris.
Linear congruential generator, suitable for 32 bit machines;
multiplication is mod 2**31
*/
static long randx = 1;
srand_(x) /* subr
www.eeworm.com/read/484789/6575157
m r2_dit_ce.m
function [X0, X1] = r2_dit_ce(x0, x1, WNkn)
%--------------------------------------------------------------
% Complete this Radix-2 DIT CE (Computational Element) function
% that performs
%
www.eeworm.com/read/478816/6703749
java sets.java
/*作者:徐朝*/
/*keystonexu@yahoo.com.cn*/
package regression.function;
import kernel.*;
/**
*这个类为生成语法树做准备
*/
public class Sets extends SetInterface
{
public Sets()
{
TerminalSet = new Cla