代码搜索:Bandwidth

找到约 1,693 项符合「Bandwidth」的源代码

代码结果 1,693
www.eeworm.com/read/313963/13577675

m ip_08_02.m

% MATLAB script for Illustrative Problem 8.2. clear echo on pn0_db=[-20:0.1:30]; pn0=10.^(pn0_db./10); capacity=3000.*log2(1+pn0/3000); pause % Press a key to see a plot of channel capacity vs.
www.eeworm.com/read/313956/13577886

m ip_08_02.m

% MATLAB script for Illustrative Problem 2, Chapter 8. echo on pn0_db=[-20:0.1:30]; pn0=10.^(pn0_db./10); capacity=3000.*log2(1+pn0/3000); pause % Press a key to see a plot of channel capacity vs
www.eeworm.com/read/310627/13648303

m interfcode.m

function [exectime, data] = interfcode(seg, data) BWshare = 0.0; % Fraction of the network bandwidth occupied by this node if (rand(1) < BWshare) ttSendMsg(1, 1, 80); % send 80 bits to myself end
www.eeworm.com/read/306480/13744429

m firrcos.m

function [b,a]=firrcos(varargin) %FIRRCOS Raised Cosine FIR Filter design. % B=FIRRCOS(N,Fc,DF,Fs) returns an order N low pass linear phase FIR % filter with a raised cosine transition band.
www.eeworm.com/read/306478/13744561

m ip_08_02.m

% MATLAB script for Illustrative Problem 8.2. clear echo on pn0_db=[-20:0.1:30]; pn0=10.^(pn0_db./10); capacity=3000.*log2(1+pn0/3000); pause % Press a key to see a plot of channel capacity vs.
www.eeworm.com/read/303558/13812512

m ip_08_02.m

% MATLAB script for Illustrative Problem 8.2. clear echo on pn0_db=[-20:0.1:30]; pn0=10.^(pn0_db./10); capacity=3000.*log2(1+pn0/3000); pause % Press a key to see a plot of channel capacity vs.
www.eeworm.com/read/301579/13855860

h aaconnection.h

#ifndef _AAConnection_h #define _AAConnection_h #define protect protected #include "Common.h" class Connection; class Agent; class AAConnection; ostream &operator
www.eeworm.com/read/301579/13855862

h bandwidthmanager.h

#ifndef _BandwidthManager_h #define _BandwidthManager_h #include "Common.h" class Connection; class BandwidthManager { private: unsigned long mBandwidth; /* total bandwidth */ unsigned
www.eeworm.com/read/301579/13855901

simconfig

#config the agent num AGENT_NUMBER = 1000 #config the document num, size, block length, piece length DOCUMENT_NUMBER = 200 FILE_SIZE = 100 BLOCK_LENTH = 16 PIECE_LENTH = 256 #debug level setup DEBUG
www.eeworm.com/read/301579/13855928

cpp bandwidthmanager.cpp

#include "BandwidthManager.h" #include "Connection.h" BandwidthManager::BandwidthManager(): mBandwidth(0), mBandwidthIn(0), mBandwidthOut(0), mAvailableBandwidthIn(0), mAvailableBandwidthOut(0)