代码搜索:Capacity
找到约 2,190 项符合「Capacity」的源代码
代码结果 2,190
www.eeworm.com/read/101912/15798248
cpp vector1.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/101557/15826379
m ip_08_01.m
% MATLAB script for Illustrative Problem 1, Chapter 8.
echo on
gamma_db=[-20:0.1:20];
gamma=10.^(gamma_db./10);
p_error=q(sqrt(2.*gamma));
capacity=1.-entropy2(p_error);
pause % Press a key to
www.eeworm.com/read/101557/15826390
m ip_08_04.m
% MATLAB script for Illustrative Problem 4, Chapter 8.
echo on
a_db=[-13:0.5:13];
a=10.^(a_db/10);
c_hard=1-entropy2(q(a));
for i=1:53
f(i)=quad('il3_8fun',a(i)-5,a(i)+5,1e-3,[],a(i));
g(
www.eeworm.com/read/101054/15855898
c token.c
/* token.C
* John Viega
*
* Jul 28, 1999 (with some mods in Jan 2000)
*/
#include "token.H"
TokenContainer::TokenContainer()
{
increment = DEFAULT_TOKEN_CONTAINER_UNIT;
list = new Token*[in
www.eeworm.com/read/100529/15872725
c token.c
/* token.C
* John Viega
*
* Jul 28, 1999 (with some mods in Jan 2000)
*/
#include "token.H"
TokenContainer::TokenContainer()
{
increment = DEFAULT_TOKEN_CONTAINER_UNIT;
list = new Token*[in
www.eeworm.com/read/321483/3534358
pl demo4.pl
use Descriptions;
my $capacity : Name(capacity)
: Purpose(to store max storage capacity for files)
: Unit(Gb);
package Other;
sub foo : Purpose(to foo all data before barring it) { }
www.eeworm.com/read/290228/3983253
h int.defs.h
// -*- C++ -*-
#define DEFAULT_INITIAL_CAPACITY 8
// The initial capacity for containers (e.g., hash tables) that
// require an initial capacity argument for constructors. Default:
// 10
www.eeworm.com/read/405279/2293592
h int.defs.h
// -*- C++ -*-
#define DEFAULT_INITIAL_CAPACITY 8
// The initial capacity for containers (e.g., hash tables) that
// require an initial capacity argument for constructors. Default:
// 10
www.eeworm.com/read/380709/2652759
h int.defs.h
// -*- C++ -*-
#define DEFAULT_INITIAL_CAPACITY 8
// The initial capacity for containers (e.g., hash tables) that
// require an initial capacity argument for constructors. Default:
// 10
www.eeworm.com/read/390326/8471081
txt errors.txt
"string new_word_list = *(new string[2 * capacity]);" is wrong, I modify it to "string* new_word_list = new string[2 * capacity];" To keep the new_word_list beginning address, I add the line"string *p