代码搜索:Capacity
找到约 2,190 项符合「Capacity」的源代码
代码结果 2,190
www.eeworm.com/read/476907/6754398
m ip_08_04.m
% MATLAB script for Illustrative Problem 8.4.
clear
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(i)
www.eeworm.com/read/402271/11539962
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/158463/11613053
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(i)=quad
www.eeworm.com/read/158463/11613064
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 see a
www.eeworm.com/read/260055/11749651
java fastvector.java
//File Interface
package apriori;
import java.util.*;
import java.io.*;
/**Vector ()
* Constructs an empty vector with an array size of 10 and a capacity increment of zero.
* Vector (int ini
www.eeworm.com/read/343990/11913943
cpp cpp1.cpp
#include
#include
#include
#include
#define DEF_32
#ifdef DEF_32
typedef unsigned int uint;
const uint low_mask = 0xffff;
const uint hig_mask = 0xffff0000;
www.eeworm.com/read/256481/11996638
cpp chapter6-25.cpp
//文件名:CHAPTER6-25.cpp
#include
#include
#include
#include
using namespace std;
int main()
{
//create empty vector for strings
vector sentence;
www.eeworm.com/read/254636/12125781
cpp figure1-4.cpp
#include
#include
#include
#include // greater
using namespace std;
template
void printVector(char *s, const vector& v) {
cout
www.eeworm.com/read/151593/12190115
cpp vector.cpp
// vector.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
#include
int main(int argc, char* argv[])
{
using namespace std;
www.eeworm.com/read/252197/12293770
m ip_08_01.m
% MATLAB script for Illustrative Problem 8.1.
clear
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 se