-
Viterbi_decode
维特比译码仿真程序
cnv_encd.m 卷积编码程序
viterbi.m 卷积译码程序
其它的是viterbi.m中用到的子函数(Viterbi convolutional coding cnv_encd.m simulation program procedures viterbi.m other convolutional decoding procedure is used in viterbi.m Functions)
- 2009-01-15 12:24:09下载
- 积分:1
-
0750679123
yah sure its useful.thanks for sharig
- 2010-12-01 18:04:53下载
- 积分:1
-
jlfx
matlab聚类分析的几个例程 包括系统聚类的法案分析 K均值聚类的法的案例分析 模糊C均值聚类分析的典型案例(matlab clustering analysis of several routines, including hierarchical clustering analysis of K-means clustering Act case law analysis of typical cases Fuzzy C-Means Clustering Analysis)
- 2014-08-27 13:28:11下载
- 积分:1
-
tvreg
TV-based image restoration and Chan-Vese segmentation. Usable MATLAB or C/C++
- 2014-11-18 07:25:05下载
- 积分:1
-
digital-communication
基于matlab的调制解调程序,适用于通信理论的初学者(Based on matlab modulation and demodulation process, communication theory for beginners)
- 2013-11-27 21:55:07下载
- 积分:1
-
huigui
一元线性回归分析的源码,通过几组数据来对该数据进行分析是否回归显著(Linear regression analysis of the source, through several sets of data to the regression analysis of the data is significant)
- 2008-01-21 16:54:50下载
- 积分:1
-
rayleigh
说明: 利用simulink的s-function方式仿真一个单径瑞利信道,其多普勒谱为经典谱(Simulink using the s-function simulation of a single-mode Rayleigh channel diameter, the Doppler spectrum for the classical spectrum)
- 2008-10-22 03:14:05下载
- 积分:1
-
RBFandsvm
利用RBF和SVM两种机器学习方法做回归预测的matlab源代码,对这两种方法进行比较(The use of RBF and SVM two kinds of machine learning methods to do the regression matlab source code, comparison of the two methods)
- 2020-12-29 16:19:00下载
- 积分:1
-
airline-t
using matlab, for prediction systems
- 2013-08-31 19:31:44下载
- 积分:1
-
EEE-212-lab-sheet
empirical formula with kaiser
clc
clear all
fs=1000
fc=250
df=50
r=0.001
f=fc/fs
dw=2*pi*(df/fs)
a=-20*log(r)
n=floor(((a-8)/(2.285*dw))+1)
if a>50
b=0.1102*(a-8.7)
elseif a>=21 && a<=50
b=0.5842*((a-21)^0.4)+0.07886*(a-21)
elseif a<21
b=0.0
end
w=kaiser(n,b)
for i=1:n
if i~=(n-1)/2
hd(i)= (2*f*sin((i-((n-1)/2))*2*pi*f))/((i-((n-1)/2))*2*pi*f)
elseif i==(n-1)/2
hd(i)=2*f
end
end
for j=1:n
h(j)=w(j)*hd(j)
end
subplot(3,1,1), plot(w)
subplot(3,1,2), plot(h)
subplot(3,1,3), plot(h,n)
- 2014-12-24 23:21:13下载
- 积分:1