代码搜索:Bandwidth
找到约 1,693 项符合「Bandwidth」的源代码
代码结果 1,693
www.eeworm.com/read/386581/8737781
m designlowerfilter.m
%DesignLowerFilter.m
function B=DesignLowerFilter(W0)
fs=8000;
N=399;
k=2*pi/fs;
Bandwidth=70;
wc1=(W0-Bandwidth/2)*k;
wc2=(W0+Bandwidth/2)*k;
B=fir2(N,[0,wc1/pi,wc2/pi,1],[0 ,1, 1, 0]);
www.eeworm.com/read/427084/8978275
m sqrc.m
%File: c5_sqrc.m
function h=sqrc(T,k,m,beta)
%T--symbol time
%k--samples per symbol
%m--delay is mT
%beta--bandwidth factor
%
n=0:2*m*k;
z=(n/k)-m+eps;
t1=cos((1+beta)*pi*z);
t2=sin((1
www.eeworm.com/read/283686/8996568
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/374411/9407041
m resample.m
function p2 = resample(p,Np,ksType)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% resample(p,Np,KSType) -- construct a new estimate of the KDE p by sampling
%
www.eeworm.com/read/374411/9407042
m condition.m
function p = condition(dens,ind,A)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% condition(P,i,A) -- find the conditional distr. P( x(~i) | x(i) = A(i))
%
www.eeworm.com/read/374411/9407045
m getbw.m
function s = getBW(dens,ind)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% getBW(P,i) -- returns the [Nd x 1] std dev. (kernel size) associated with
%
www.eeworm.com/read/374411/9407049
m ksize.m
function npd = ksize(npd,type,varargin)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% KSIZE Find optimal kernel size for kernel density estimates
%
%
www.eeworm.com/read/374411/9407067
m rescale.m
function npd = rescale(npd,factor)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% rescale(P, factor) -- Rescales the KDE "P" proportionally by
%
www.eeworm.com/read/374411/9407231
m quantize.m
function p = quantize(p,R,minV,maxV,minS,maxS)
%
% p = quantize(p,R,type) -- "quantize" elements of KDE p to R bits
%
%p.centers = round(1000*p.centers)/1000;
%p.means = round(1000*p.means)/100
www.eeworm.com/read/374083/9421608
cxx newmat4.cxx
//$$ newmat4.cxx Constructors, ReDimension, basic utilities
// Copyright (C) 1991,2: R B Davies
#include "include.h"
#include "newmat.h"
#include "newmatrc.h"
//#define REPORT { sta