代码搜索:Quantization
找到约 3,139 项符合「Quantization」的源代码
代码结果 3,139
www.eeworm.com/read/393394/8290057
m qcoeff.m
function [y,L,B] = QCoeff(x,N)
% [y,L,B] = QCoeff(x,N)
% Coefficient Quantization using N=L+B bit Representation
% with Rounding operation
% y: quantized array (same dim as x)
%
www.eeworm.com/read/393394/8290144
m statmodelr.m
function [H1,H2,Q, estat] = StatModelR(xn,B,N);
% Statistical Model (Rounding) for A/D Quantization error and its Distribution
% ------------- -----------------------------------------------------
www.eeworm.com/read/147096/12585514
htm htb_frmt.htm
Block list for Source Coding Library
Source Coding Library
Signal Quantizer
Scalar quantization encode
Triggered Signa
www.eeworm.com/read/248284/12585603
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 =
www.eeworm.com/read/300216/13928580
c jcdeflts.c
/*
* jcdeflts.c
*
* Copyright (C) 1991, 1992, Thomas G. Lane.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying REA
www.eeworm.com/read/134087/14008887
c adc.c
/* adc.c - successive approximation A/D converter */
#include
double dac();
int u();
void adc(x, b, B, R)
double x, R;
int *b, B;
{
int i;
double y, xQ, Q;
Q = R /
www.eeworm.com/read/134087/14008948
c adc1.c
/* adc.c - successive approximation A/D converter */
#include
double dac();
int u();
void adc(x, b, B, R)
double x, R;
int *b, B;
{
int i;
double y, xQ, Q;
Q = R /
www.eeworm.com/read/203170/15364504
c a-d_converter.c
/* adc.c - successive approximation A/D converter */
#include
double dac();
int u();
void adc(x, b, B, R)
double x, R;
int *b, B;
{
int i;
double y, xQ, Q;
Q = R /
www.eeworm.com/read/112799/15476518
c adc.c
/* adc.c - successive approximation A/D converter */
#include
double dac();
int u();
void adc(x, b, B, R)
double x, R;
int *b, B;
{
int i;
double y, xQ, Q;
Q = R /
www.eeworm.com/read/108859/15574011
m examp47.m
clc,echo on
%EXAMPLE 47
N=200;t=(0:N-1)*0.01; % Time array
x=sin(2*pi*t); % DT sampled signal
d=max(x)-min(x); % Dynamic range
b