Welcome![Sign In][Sign Up]
Location:
Search - G0

Search list

[Communicationturbodecode

Description: 第一个编码的程序调出来了,1/2的码率,用的是8×8行列交织器,rsc用的是 g0=[1 1 1],g1=[1 0 1]。算法是根据网格图来编写的。 信息输入是64bit的(0,1,0,1,0,1,0,1,0,0,、、、、、),最后结果是stream[128]=[00100110011000100101000001010101000001010101000001000101000101000101000101000101000001000100000001000100000001010100000101011011] 第二个译码程序用的是sova译码算法,迭代次数选的6,现在解码出来的信息是对的,和原输入编码器的信息位一致。 然后我有意把译码器输入stream序列打错几个bit都能正确译码。
Platform: | Size: 2323 | Author: 刘文 | Hits:

[Otherdeconvgaijin

Description: 卷积码译码算法改进 实现Conv.(2,1,9)的编码、软判决滑动窗维特比译码,其生成多项式为G0=561(八进制),G1=753(八进制),调制方式为BPSK,信道为AWGN,比较不同的译码深度对译码器性能的影响-convolutional code decoding algorithm to improve achievement Conv. (2,1,9) of the Code, Soft Decision sliding window Viterbi Decoder, generating polynomial for the G0 = 561 (octal), G1 = 753 (octal), for BPSK modulation mode, channel for AWGN, compare different depth of decoding decoder performance of
Platform: | Size: 47171 | Author: 李春晖 | Hits:

[WEB Codeg0

Description: 一套现成的分类信息网站发布系统,拥有完善的数据分类和简洁的网页设计,COM2008分类信息网站是报纸媒体分类广告的网络版,使用该系统可为网民提供招租、招聘、求购、求租、搬迁、运输、二手交易、招生培训、婚介交友等各类信息的发布和查询,拥有功能强大的信息搜索引擎,适合于做城市门户网站的综合信息发布、查询平台。-a ready-made website of information dissemination system, it has a good data classification and concise website design, COM2008 classified information website is a newspaper classified advertising media network version, The system can be used for Internet users to provide lease and recruitment, purchase, brothel, relocation, transportation, secondary transactions and the enrollment training, dating friends, and other various information dissemination and inquiries have powerful information search engine, suitable for cities to do a comprehensive portal for information dissemination and search platform.
Platform: | Size: 102707 | Author: dfsd | Hits:

[Other resource10jixitongk1-k18moxing1+g0(s)

Description: 10机系统k1-k18模型1+g0(s)。能运用于电力系统潮流计算,MATLAB编写
Platform: | Size: 4606 | Author: sjl | Hits:

[Windows Developmiddle_bresenham_Arc

Description: 基本原理 假定初始点P0 ∈G0,沿某方 向(假定为X轴)前进△X时,到 达G+或G-(假定为G-)中的P1,在 沿另外一方向(Y轴)前进△Y,到 达P2。若P2 ∈G+,则改变前进 方向,否则继续向G+前进。-Basic Principle: First ,initial point Pzero,assumed that Pzero belong to Gzero,moves the distance deltaX along one direction,assuming X axes,and reaches the point Pone belonging to Gplus or Gminus,assumed that it is Gminus.Then,it moves the distance deltaY along another direction ,that is Y axes,and reaches the point Ptwo.It will change the directon of moving if Ptwo belongs to Gplus or it will keep moving to Gplus.
Platform: | Size: 42845 | Author: 沈征华 | Hits:

[Windows Developmiddle_bresenham_Circle

Description: 基本原理 假定初始点P0 ∈G0,沿某方 向(假定为X轴)前进△X时,到 达G+或G-(假定为G-)中的P1,在 沿另外一方向(Y轴)前进△Y,到 达P2。若P2 ∈G+,则改变前进 方向,否则继续向G+前进。-functional:assume orient point P0 in G0,go along cX on some direction(assume x axial),arrive P1 in G+ or G-(assume G-),go along cY on another direction(assume y axia),arrive P2.if P2 in G+,change direction,else go along G+.
Platform: | Size: 43572 | Author: 沈征华 | Hits:

[Crypt_Decrypt algrithms16位CRC校验_Modbus标准算法

Description:

CRC校验
1、循环校验码(CRC码):是数据通信领域中最常用的一种差错校验码,其特征是信息
字段和校验字段的长度可以任意选定。
2、生成CRC码的基本原理:任意一个由二进制位串组成的代码都可以和一个系数仅
为‘0’和‘1’取值的多项式一一对应。例如:代码1010111对应的多项式
为x6+x4+x2+x+1,而多项式为x5+x3+x2+x+1对应的代码101111。
3、CRC码集选择的原则:若设码字长度为N,信息字段为K位,校验字段为R位(N=K+R),
则对于CRC码集中的任一码字,存在且仅存在一个R次多项式g(x),
使得V(x)=A(x)g(x)=xRm(x)+r(x);
其中:    m(x)为K次信息多项式, r(x)为R-1次校验多项式,
         g(x)称为生成多项式:
g(x)=g0+g1x+ g2x2+...+g(R-1)x(R-1)+gRxR
发送方通过指定的g(x)产生CRC码字,接收方则通过该g(x)来验证收到的CRC码字。
4、CRC校验码软件生成方法:
    借助于多项式除法,其余数为校验字段。
例如:信息字段代码为: 1011001;对应m(x)=x6+x4+x3+1
      假设生成多项式为:g(x)=x4+x3+1;则对应g(x)的代码为: 11001
      x4m(x)=x10+x8+x7+x4 对应的代码记为:10110010000;
采用多项式除法: 得余数为: 1010     (即校验字段为:1010)
发送方:发出的传输字段为: 1 0 1 1 0 0 1 1 0 10
                          信息字段       校验字段
接收方:使用相同的生成码进行校验:接收到的字段/生成码(二进制除法)
                  如果能够除尽,则正确。


Platform: | Size: 6509 | Author: ttongg | Hits:

[DocumentsJVT-G050

Description: jvt的h264标准文档-jvt the standards document ENG
Platform: | Size: 1630208 | Author: 李杰 | Hits:

[Windows Developmiddle_bresenham_Arc

Description: 基本原理 假定初始点P0 ∈G0,沿某方 向(假定为X轴)前进△X时,到 达G+或G-(假定为G-)中的P1,在 沿另外一方向(Y轴)前进△Y,到 达P2。若P2 ∈G+,则改变前进 方向,否则继续向G+前进。-Basic Principle: First ,initial point Pzero,assumed that Pzero belong to Gzero,moves the distance deltaX along one direction,assuming X axes,and reaches the point Pone belonging to Gplus or Gminus,assumed that it is Gminus.Then,it moves the distance deltaY along another direction ,that is Y axes,and reaches the point Ptwo.It will change the directon of moving if Ptwo belongs to Gplus or it will keep moving to Gplus.
Platform: | Size: 43008 | Author: 沈征华 | Hits:

[Windows Developmiddle_bresenham_Circle

Description: 基本原理 假定初始点P0 ∈G0,沿某方 向(假定为X轴)前进△X时,到 达G+或G-(假定为G-)中的P1,在 沿另外一方向(Y轴)前进△Y,到 达P2。若P2 ∈G+,则改变前进 方向,否则继续向G+前进。-functional:assume orient point P0 in G0,go along cX on some direction(assume x axial),arrive P1 in G+ or G-(assume G-),go along cY on another direction(assume y axia),arrive P2.if P2 in G+,change direction,else go along G+.
Platform: | Size: 43008 | Author: 沈征华 | Hits:

[Communicationturbodecode

Description: 第一个编码的程序调出来了,1/2的码率,用的是8×8行列交织器,rsc用的是 g0=[1 1 1],g1=[1 0 1]。算法是根据网格图来编写的。 信息输入是64bit的(0,1,0,1,0,1,0,1,0,0,、、、、、),最后结果是stream[128]=[00100110011000100101000001010101000001010101000001000101000101000101000101000101000001000100000001000100000001010100000101011011] 第二个译码程序用的是sova译码算法,迭代次数选的6,现在解码出来的信息是对的,和原输入编码器的信息位一致。 然后我有意把译码器输入stream序列打错几个bit都能正确译码。-err
Platform: | Size: 2048 | Author: 刘文 | Hits:

[Communication-Mobiledeconvgaijin

Description: 卷积码译码算法改进 实现Conv.(2,1,9)的编码、软判决滑动窗维特比译码,其生成多项式为G0=561(八进制),G1=753(八进制),调制方式为BPSK,信道为AWGN,比较不同的译码深度对译码器性能的影响-convolutional code decoding algorithm to improve achievement Conv. (2,1,9) of the Code, Soft Decision sliding window Viterbi Decoder, generating polynomial for the G0 = 561 (octal), G1 = 753 (octal), for BPSK modulation mode, channel for AWGN, compare different depth of decoding decoder performance of
Platform: | Size: 47104 | Author: 李春晖 | Hits:

[WEB Codeg0

Description: 一套现成的分类信息网站发布系统,拥有完善的数据分类和简洁的网页设计,COM2008分类信息网站是报纸媒体分类广告的网络版,使用该系统可为网民提供招租、招聘、求购、求租、搬迁、运输、二手交易、招生培训、婚介交友等各类信息的发布和查询,拥有功能强大的信息搜索引擎,适合于做城市门户网站的综合信息发布、查询平台。-a ready-made website of information dissemination system, it has a good data classification and concise website design, COM2008 classified information website is a newspaper classified advertising media network version, The system can be used for Internet users to provide lease and recruitment, purchase, brothel, relocation, transportation, secondary transactions and the enrollment training, dating friends, and other various information dissemination and inquiries have powerful information search engine, suitable for cities to do a comprehensive portal for information dissemination and search platform.
Platform: | Size: 102400 | Author: dfsd | Hits:

[matlab10jixitongk1-k18moxing1+g0(s)

Description: 10机系统k1-k18模型1+g0(s)。能运用于电力系统潮流计算,MATLAB编写-10-machine system k1-k18 Model 1+ G0 (s). Can be applied to power system load flow calculation, MATLAB prepared
Platform: | Size: 4096 | Author: sjl | Hits:

[Communicationconvolution_encoder

Description: WLAN FEC convolution_encoder g0=133 g1=171 Rate 0:1/2 1:2/3 2:3/4 for 802.11a simulation-WLAN FEC convolution_encoder g0=133 g1=171 Rate 0:1/2 1:2/3 2:3/4 for 802.11a simulation
Platform: | Size: 1024 | Author: Kim Myung Ick | Hits:

[OtherJVT-G012

Description: H264 rate control document
Platform: | Size: 285696 | Author: kiran | Hits:

[Compress-Decompress algrithmsJVT-G012

Description: JVTG012为码率控制提案,此提案是基于H.264视频编码标准的。可以给码率控制的朋友带来一定帮助。-JVTG012 for the rate control proposals, this proposal is based on the H.264 video coding standard. Rate control can be a friend to bring some help.
Platform: | Size: 259072 | Author: 金建 | Hits:

[matlabStrapdown

Description: 一、数据说明: 1:惯导系统为指北方位的捷连系统。初始经度为116.344695283度、纬度为39.975172度,高度h为30米。 初速度为v0=[0.000048637 0.000206947 0.007106781],飞行高度不变。 2:jlfw中为600秒的数据,陀螺仪和加速度计采样周期分别为为1/80秒和1/80秒。 3:初始姿态角为[0.120992605 0.010445947 91.637207](俯仰,横滚,航向,单位为度), jlfw中保存的为比力信息f_INSc(单位m/s^2)、陀螺仪角速率信息wib_INSc(单位rad/s),排列顺序为 一~三行分别为东、北、天向信息. 4: 航向角以逆时针为正。 5:地球椭球长半径re=6378245 地球自转角速度wie=7.292115147e-5 重力加速度g=g0*(1+gk1*c33^2)*(1-2*h/re)/sqrt(1-gk2*c33^2); g0=9.7803267714 gk1=0.00193185138639 gk2=0.00669437999013 c33=sin(lat纬度) -First, data on: 1: inertial navigation system that links the north bit of the Czech system. Initial longitude 116.344695283 degrees latitude 39.975172, height h is 30 meters. Initial speed of v0 = [0.000048637 0.000206947 0.007106781], the same altitude. 2: jlfw for 600 seconds of data, gyroscopes and accelerometers were sampling period of 1/80 sec and 1/80 seconds. 3: Initial attitude angle [0.120992605 0.010445947 91.637207] (pitch, roll, heading, in units of degrees), jlfw than the power saved information f_INSc (unit m/s ^ 2), angular rate gyro information wib_INSc (units of rad/s), in the order of 1 ~ three lines were east, north, days to the information. 4: The heading angle is positive counterclockwise. 5: Earth ellipsoid long radius re = 6378245 Earth s rotation angular velocity wie = 7.292115147e-5 acceleration due to gravity g = g0* (1+ gk1* c33 ^ 2)* (1-2* h/re)/sqrt (1-gk2* c33 ^ 2) g0 = 9.7803267714 gk1 = 0.00193185138639 gk2 = 0.00669437999013
Platform: | Size: 401408 | Author: 袁刚平 | Hits:

[VHDL-FPGA-Verilogconvolution_encoder_VHDL

Description: 卷积码编译码,由SERVICE、PSDU、TAIL和PAD域组成的DATA域应进行卷积编码,码率应根据所需的传输速率从R=1/2,2/3,3/4中选择-for 802.11a simulation WLAN FEC convolution_encoder g0=133 g1=171 Rate 0:1/2 1:2/3 2:3/4 for 802.11a simulation
Platform: | Size: 126976 | Author: cslbetter | Hits:

[DocumentsG0PDF

Description: 合成孔径雷达杂波回波图像,G0分布的PDF函数绘制,是G0分布族的一种,稍加改动可以用绘制其他分布类型的PDF曲线(Synthetic aperture radar clutter echo images, G0 distribution of the PDF function rendering, is a G0 distribution family, a little change, you can draw other distribution types of PDF curves)
Platform: | Size: 5120 | Author: 张大胖 | Hits:
« 12 »

CodeBus www.codebus.net