代码搜索:Capacity
找到约 2,190 项符合「Capacity」的源代码
代码结果 2,190
www.eeworm.com/read/456354/7351400
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/455289/7374476
cpp main.cpp
#include
#include
using namespace std;
void print(vector& v);
int main(void){
using namespace std;
vector v;
print(v);
//添加5个元素
v.push_back(1);
v.push
www.eeworm.com/read/448162/7539731
m capacitymm.m
function sum_inst_cap = capacityMM(nTx, nRx, H, e, V, Plinear, sigma_N_2);
% sum_inst_cap = capacity(nTx, nRx, H, e, s, V, Plinear, sigma_N_2)
%
% Computes the capacity of the channel from the EVD
www.eeworm.com/read/447716/7546262
m capacitymm.m
function sum_inst_cap = capacityMM(nTx, nRx, H, e, V, Plinear, sigma_N_2);
% sum_inst_cap = capacity(nTx, nRx, H, e, s, V, Plinear, sigma_N_2)
%
% Computes the capacity of the channel from the EVD
www.eeworm.com/read/446102/7585514
readme
Readme for Spruce version 0.2
Compiling:
gmake
To run:
first start spruce_rcv at the destination, and then start spruce_snd at the
source as follows
destination$ ./spruce_rcv
source$ ./spruce_snd
www.eeworm.com/read/439811/7701377
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
www.eeworm.com/read/439811/7701510
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/198531/7930927
c buffer.c
/*
* OpenVPN -- An application to securely tunnel IP networks
* over a single UDP port, with support for TLS-based
* session authentication and key exchange,
*
www.eeworm.com/read/198038/7955776
cpp vehicle.cpp
#include
#include
using namespace std;
//交通工具类型
enum Vehicle_Type {car,truck};
//交通工具颜色
enum Color {red,blue,green,black,white,gray,ivory};
string colorName[]={"红","蓝","绿"
www.eeworm.com/read/244937/12830587
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