代码搜索:Distortion
找到约 806 项符合「Distortion」的源代码
代码结果 806
www.eeworm.com/read/100142/15882837
c lloyd0.c
/******************************************************************************
*
* NAME
* lloyd0.c
* J. R. Goldschneider 4/93
*
* MODIFICATIONS
* 11/93 This was changed slightly to en
www.eeworm.com/read/100142/15882842
c wpt_bitalloc.c
/******************************************************************************
*
* Copyright Jill R. Goldschneider, 1998
*
* This work was partially supported by a NASA Graduate Student
* Fellow
www.eeworm.com/read/385005/8824668
m wavdist2.m
function y=wavdist2(za)
% WAVDIST2: plots wave distortion effects on wind at za.
% WAVDIST2(za) plots the effects of wave distortion on the
% wind Ua measured at height za for the following sig
www.eeworm.com/read/384426/8870121
m qcgauss.m
function [x,y,D,H] = qcgauss(N,var,e,type)
sig = sqrt(var);
sig2 = var;
switch type
case 'uniform'
del = 5*sig/N; % initial quantization region
e = 10e-4;
j = 1;
% For even # regio
www.eeworm.com/read/384426/8870150
m qgauss.m
function [x,y,D,H] = qgauss(N,var,quanttype,disttype)
sig = sqrt(var);
sig2 = var;
switch quanttype
case 'uniform'
del = 5*sig/N; % initial quantization region
e = 10e-4;
j = 1;
%
www.eeworm.com/read/384426/8870155
m getnoisepower.m
function D = getNoisePower(x,q,var,dist)
D = 0;
switch dist
case 'uniform'
V = sqrt(3*var);
for i=1:length(q)
D = D + (x(i+1)-q(i))^3 - (x(i)-q(i))^3;
end
D = D/(6*V);
case 'gaussian'
www.eeworm.com/read/384426/8870164
m qlaplace.m
function [x,y,D,H] = qlaplace(N,var,quanttype,disttype)
sig = sqrt(var);
sig2 = var;
l = sqrt(2/var);
switch quanttype
case 'uniform'
l = sqrt(2/sig2);
e = 10e-4;
j = 1;
first = 1
www.eeworm.com/read/372550/9503961
m specsubm.m
function [ss,po]=specsubm(s,fs,p)
%SPECSUBM performs speech enhancement using spectral subtraction [SS,PO]=(S,FS,P)
%
% implementation of spectral subtraction algorithm by R Martin (rather slow)
%
www.eeworm.com/read/365161/9876588
m specsubm.m
function [ss,po]=specsubm(s,fs,p)
%SPECSUBM performs speech enhancement using spectral subtraction [SS,PO]=(S,FS,P)
%
% implementation of spectral subtraction algorithm by R Martin (rather slow)
%