代码搜索:Bernoulli
找到约 115 项符合「Bernoulli」的源代码
代码结果 115
www.eeworm.com/read/131315/5937618
cal bernoulli.cal
/*
* Copyright (c) 1993 David I. Bell
* Calculate the Nth Bernoulli number B(n).
* This uses the following symbolic formula to calculate B(n):
*
* (b+1)^(n+1) - b^(n+1) = 0
*
* where b is a dum
www.eeworm.com/read/493005/6403839
cal bernoulli.cal
/*
* bernoulli - clculate the Nth Bernoulli number B(n)
*
* Copyright (C) 2000 David I. Bell and Landon Curt Noll
*
* Calc is open software; you can redistribute it and/or modify it under
* the
www.eeworm.com/read/233013/14173815
m bernoulli.m
function r = bernoulli(N,arg);
% BERNOULLI: compute Bernoulli deviates with parameter lambda
% and sigma
%
% [r] = bernoulli(N,[lambda,signa]);
%
% IN N: Number of deviates
%
www.eeworm.com/read/124283/14578653
c bernoulli.c
/* randist/bernoulli.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of
www.eeworm.com/read/217548/14959041
c bernoulli.c
#include "uniform.c"
int bernoulli(double p,long int *seed)
{
int x;
double u;
double uniform();
u=uniform(0.0,1.0,seed);
x=(u
www.eeworm.com/read/212047/15166686
c bernoulli.c
/* randist/bernoulli.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of
www.eeworm.com/read/167728/5452852
c bernoulli.c
/* randist/bernoulli.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of
www.eeworm.com/read/375190/2731145
hpp bernoulli.hpp
// boost\math\distributions\bernoulli.hpp
// Copyright John Maddock 2006.
// Copyright Paul A. Bristow 2007.
// Use, modification and distribution are subject to the
// Boost Software License, Versi
www.eeworm.com/read/375190/2738904
qbk bernoulli.qbk
[section:bernoulli_dist Bernoulli Distribution]
``#include ``
namespace boost{ namespace math{
template