代码搜索:Quantization
找到约 3,139 项符合「Quantization」的源代码
代码结果 3,139
www.eeworm.com/read/378914/2679260
m p9_3.m
% Program P9_3
% Coefficient Quantization Effects on Direct Form
% Realization of an FIR Transfer Function
clf;
f = [0 0.4 0.45 1]; m = [1 1 0 0];
b = remez(19, f, m);
[g,w] = gain(b,1);
bq = a2dT(b,
www.eeworm.com/read/378914/2679333
m p9_2.m
% Program P9_2
% Coefficient Quantization Effects on Cascade
% Realization of an IIR Transfer Function
clf;
[z,p,k] = ellip(6,0.05,60,0.4);
[b,a] = zp2tf(z,p,k);
[g,w] = gain(b,a);
sos = zp2sos
www.eeworm.com/read/378914/2679405
m p9_3.m
% Program P9_3
% Coefficient Quantization Effects on Direct Form
% Realization of an FIR Transfer Function
clf;
f = [0 0.4 0.45 1]; m = [1 1 0 0];
b = remez(19, f, m);
[g,w] = gain(b,1);
bq = a2dT(b,
www.eeworm.com/read/173140/9670809
m uq_mdpnt.m
function dist=uq_mdpnt(funfcn,b,n,delta,tol,p1,p2,p3)
%UQ_MDPNT Returns the distortion of a uniform quantizer.
% with quantization points set to the midpoints.
% DIST=UQ_MDPNT(FUNFCN,B,N,DELTA
www.eeworm.com/read/268231/11148964
m uq_mdpnt.m
function dist=uq_mdpnt(funfcn,b,n,delta,tol,p1,p2,p3)
%UQ_MDPNT Returns the distortion of a uniform quantizer.
% with quantization points set to the midpoints.
% DIST=UQ_MDPNT(FUNFCN,B,N,DELTA
www.eeworm.com/read/147096/12583765
m uq_mdpnt.m
function dist=uq_mdpnt(funfcn,b,n,delta,tol,p1,p2,p3)
%UQ_MDPNT Returns the distortion of a uniform quantizer.
% with quantization points set to the midpoints.
% DIST=UQ_MDPNT(FUNFCN,B,N,DE
www.eeworm.com/read/300562/13905661
m uq_mdpnt.m
function dist=uq_mdpnt(funfcn,b,n,delta,tol,p1,p2,p3)
%UQ_MDPNT Returns the distortion of a uniform quantizer.
% with quantization points set to the midpoints.
% DIST=UQ_MDPNT(FUNFCN,B,N,DELTA
www.eeworm.com/read/300086/13936625
m uq_mdpnt.m
function dist=uq_mdpnt(funfcn,b,n,delta,tol,p1,p2,p3)
%UQ_MDPNT Returns the distortion of a uniform quantizer.
% with quantization points set to the midpoints.
% DIST=UQ_MDPNT(FUNFCN,B,N,DE
www.eeworm.com/read/132953/14065294
m uq_mdpnt.m
function dist=uq_mdpnt(funfcn,b,n,delta,tol,p1,p2,p3)
%UQ_MDPNT Returns the distortion of a uniform quantizer.
% with quantization points set to the midpoints.
% DIST=UQ_MDPNT(FUNFCN,B,N,DELTA
www.eeworm.com/read/111557/15510019
c g711.c
/*
* g711.c
*
* u-law, A-law and linear PCM conversions.
*/
#define SIGN_BIT (0x80) /* Sign bit for a A-law byte. */
#define QUANT_MASK (0xf) /* Quantization field mask. */
#define NSEGS