代码搜索:维特比卷积译码
找到约 5,845 项符合「维特比卷积译码」的源代码
代码结果 5,845
www.eeworm.com/read/356924/10218483
ppt 卷积码编码及其维特比译码的c54x simulator仿真试验.ppt
www.eeworm.com/read/345239/11824958
pdf 维特比译码器专用集成电路的设计.pdf
www.eeworm.com/read/388441/8609004
pdf 卷积码的译码算法.pdf
www.eeworm.com/read/488991/6481308
pdf 卷积码的译码算法.pdf
www.eeworm.com/read/306251/13748856
pdf _2_1_7_维特比译码器的并行算法实现.pdf
www.eeworm.com/read/382390/9032354
doc 卷积.doc
www.eeworm.com/read/463371/7182750
txt 卷积.txt
function y=conv(x,h)
nx=length(x);
nh=length(h);
for n1=1:nx+nh-1;
sum=0;
for m1=1:nh;
t=n1-m1;
if(t>0&t
www.eeworm.com/read/155014/11906411
txt 卷积.txt
#include "graphics.h"
#include "conio.h"
#include "math.h"
#include "stdio.h"
#define E 100
#define N 640
void jianto(int x,int y,int drection)
{
if(drection==0)
{
line(x,y,x-5,y-5);