代码搜索:量化技术
找到约 10,000 项符合「量化技术」的源代码
代码结果 10,000
www.eeworm.com/read/456135/7357204
asv cdma_demod_test1.asv
clear all;
close all;
clc;
%AD采样率为20倍符号速率;
fs=1228800*20;
%读取数据,16量化,
datain=read_binary ('PILOTSIG.dat',50000);
% datain=read_binary ('SKYFSIG.dat',50000);
datain=datain';
%中频采样后剩余载波频率为 fc=3
www.eeworm.com/read/456135/7357207
m cdma_demod_test1.m
clear all;
close all;
clc;
%AD采样率为20倍符号速率;
fs=1228800*20;
%读取数据,16量化,
datain=read_binary ('PILOTSIG.dat',50000);
% datain=read_binary ('SKYFSIG.dat',50000);
datain=datain';
%中频采样后剩余载波频率为 fc=3
www.eeworm.com/read/453413/7420950
m pcm.m
%show the pcm encode and decode
%show the pcm encode and decode
clear all
close all
dt = 1/4096;
t=0:dt:2;
%vm1=-70:1:0; %输入的正弦信号幅度不同
vm1 = 0;
vm = 10.^(vm1/20);
v = 1; %量化区间为[-1
www.eeworm.com/read/367937/6341085
m main.m
% 多径型信号产生,分析
clear;
% 仿真基本参数
M=10^4; % T内的采样点数,太少则时延量化精度不够。
T=1/(24.3*1000); % 符号时宽
h=T/M; % 采样间隔,步长
fc=1.9*10^9; % 载波频率
w=2*3.14159265358
www.eeworm.com/read/482677/6620925
m pcm.m
%show the pcm encode and decode
%show the pcm encode and decode
clear all
close all
dt = 1/4096;
t=0:dt:2;
%vm1=-70:1:0; %输入的正弦信号幅度不同
vm1 = 0;
vm = 10.^(vm1/20);
v = 1; %量化区间为[-1
www.eeworm.com/read/480741/6661203
m 宋柳佳的pcm编码.m
function k=pcm(a)
A=a/max(abs(a)); %归一化
A=abs(A);
p=[0 1/128 1/64 1/32 1/16 1/8 1/4 1/2 1];%段落比较划分
c=[1 1 2 4 8 16 32 64]; %每段的最小量化间隔
for i=1:length(a)
f
www.eeworm.com/read/255697/12064361
m test_quant_dequant.m
%h263量化测试
%测试1,输入8x8全零数组
TestMatrixZeros = zeros(8,8);
result = BlockQuant263(TestMatrixZeros,10);
TestEqual(result,BlockDequant263(result,10));
%测试2,输入8x8全1数组
TestMatrixOnes=ones(8,8);
www.eeworm.com/read/251692/12325808
h bmp.h
#ifndef BMP_H
#define BMP_H
#include
#include "Header.h"
//这一模块用于读取一个BMP文件,为下面的量化做好准备。
//定义设备无关位图结构
typedef struct
{
WORD bitCount;
WORD bpl;
DWORD height;
DWORD width
www.eeworm.com/read/167450/9968513
txt 先看我.txt
************************************************************************
幻网软件开发技术网
http://www.ok321.net
Email:xuhuanlingzhe@163.com
****************************************************************