代码搜索:Bandwidth
找到约 1,693 项符合「Bandwidth」的源代码
代码结果 1,693
www.eeworm.com/read/480480/6664849
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. P/N
www.eeworm.com/read/480200/6668038
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/480200/6668039
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/480200/6668042
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/480200/6668044
m ksize.m
function npd = ksize(npd,type,varargin)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% KSIZE Find optimal kernel size for kernel density estimates
%
%
www.eeworm.com/read/480200/6668054
m rescale.m
function npd = rescale(npd,factor)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% rescale(P, factor) -- Rescales the KDE "P" proportionally by
%
www.eeworm.com/read/480200/6668142
m ksizelscv.m
function h = ksizeLSCV(npd)
% "Least-Squares Cross Validation" estimate (Silverman)
%
% Copyright (C) 2005 Alexander Ihler; distributable under GPL -- see README.txt
% hROT = ksizeROT(npd);
% npd
www.eeworm.com/read/480200/6668167
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/479088/6699300
m tranfreqm.m
function freqm = tranfreqm(m,n,carf,bandw)
%
% m = number of rows.
% n = number of columns.
% carf = carrier frequency.
% bandw = bandwidth.
%
% if m and n are defined only, a matrix such as
www.eeworm.com/read/476907/6754100
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.