代码搜索:Addition
找到约 2,224 项符合「Addition」的源代码
代码结果 2,224
www.eeworm.com/read/306033/13754739
js javascript_polinomials.js
// Addition of polynomials (a cyclic linked list application).
function Add(InitP, InitQ) {
var P, Q;
P = & InitP;
Q = & InitQ;
while (true) {
while (P[0][1] < Q[0][1]) Q = & Q[1];
www.eeworm.com/read/306033/13754748
pb basic_polinomials.pb
' Addition of polynomials (a cyclic linked list application).
Sub Add(InitP, InitQ)
Dim P, Q
P = AddressOf InitP
Q = AddressOf InitQ
Do
While P(0)(1) < Q(0)(1)
Q = AddressOf
www.eeworm.com/read/140847/5779586
m ff_inf_engine.m
function engine = ff_inf_engine(bnet)
% FF_INF_ENGINE Factored frontier inference engine for DBNs
% engine = ff_inf_engine(bnet)
%
% The model must be topologically isomorphic to an HMM.
% In addition
www.eeworm.com/read/133943/5897768
m ff_inf_engine.m
function engine = ff_inf_engine(bnet)
% FF_INF_ENGINE Factored frontier inference engine for DBNs
% engine = ff_inf_engine(bnet)
%
% The model must be topologically isomorphic to an HMM.
% In addition
www.eeworm.com/read/131315/5932100
c random.c
#ifndef lint
static char sccsid[] = "@(#)random.c 4.3 (Berkeley) 84/04/16";
#endif
#include
/*
* random.c:
* An improved random number generation package. In addition to the standard
*
www.eeworm.com/read/131315/5932121
c random.c
#ifndef lint
static char sccsid[] = "@(#)random.c 4.3 (Berkeley) 84/04/16";
#endif
#include
/*
* random.c:
* An improved random number generation package. In addition to the standard
*
www.eeworm.com/read/127438/6006441
c bsend1.c
#include "mpi.h"
#include
#include
/*
* This is a simple program that tests bsend. It may be run as a single
* process to simplify debugging; in addition, bsend allows send-t
www.eeworm.com/read/100285/6272306
hlp pgfunctions.hlp
.pgaw:Help.f.t insert end \
"PostgreSQL functions" {title} \
"
Many data types have functions available for conversion to other related types. In addition, there are some type-specific functions. Som
www.eeworm.com/read/477110/6747933
m plus.m
%PLUS Add two quaternion objects
%
% Invoked by the + operator
%
% q1+q2 standard quaternion addition
% Copyright (C) 1999-2008, by Peter I. Corke
%
% This file is part of The Robotics Toolbox for Ma
www.eeworm.com/read/340916/12123592
cpp soln2_3.cpp
// Soln2_3.cpp
/*
1 + 2 + 3 + 4 is executed as:
(((1 + 2) + 3) + 4)
because addition is left-associative.
*/
/*
16 * 4 / 2 * 3 is executed as:
(((16 * 4) / 2) * 3)
bec