登录
首页 » matlab » Chapter10

Chapter10

于 2020-10-11 发布 文件大小:997KB
0 84
下载积分: 1 下载次数: 3

代码说明:

  第四版prokias数字通信配套源代码之大结局(从第10章一直到书本末)(source code(matlab )for prokias Digital Communication (4th edition))

文件列表:

Chapter10
.........\DigModTutorial.m
.........\programs
.........\........\menu
.........\........\....\abschuss.m
.........\........\....\auswahl.m
.........\........\....\backmen.m
.........\........\....\closemodcross.m
.........\........\....\convmenu.m
.........\........\....\endemen.m
.........\........\....\filtmen.m
.........\........\....\pshapemenu.m
.........\........\....\pulsemenu.m
.........\........\....\tutorial.m
.........\........\prgs
.........\........\....\asknrzbw.m
.........\........\....\asknrzbw.mdl
.........\........\....\asknrzmf.m
.........\........\....\asknrzmf.mdl
.........\........\....\asknyqmf.m
.........\........\....\asknyqmf.mdl
.........\........\....\askwnymf.m
.........\........\....\askwnymf.mdl
.........\........\....\bpsnrzbw.m
.........\........\....\bpsnrzbw.mdl
.........\........\....\bpsnrzmf.m
.........\........\....\bpsnrzmf.mdl
.........\........\....\bpsnyqmf.m
.........\........\....\bpsnyqmf.mdl
.........\........\....\bpswnymf.m
.........\........\....\bpswnymf.mdl
.........\........\....\bwthui.m
.........\........\....\closerec.m
.........\........\....\closetra.m
.........\........\....\closmskr.m
.........\........\....\closmskt.m
.........\........\....\closqamr.m
.........\........\....\closqamt.m
.........\........\....\convnrz.m
.........\........\....\convnyq.m
.........\........\....\convwny.m
.........\........\....\depfun
.........\........\....\......\apkconst.m
.........\........\....\......\arymimai.c
.........\........\....\......\arymimai.dll
.........\........\....\......\arymimai.mexglx
.........\........\....\......\checkinp.m
.........\........\....\......\constlay.m
.........\........\....\......\cplotask.m
.........\........\....\......\cplotpsk.m
.........\........\....\......\cplotqam.m
.........\........\....\......\de2bi.m
.........\........\....\......\dspblkrandsrc2.m
.........\........\....\......\dspsafe_set_param.m
.........\........\....\......\eyediasi.m
.........\........\....\......\eyesampl.m
.........\........\....\......\firrcos.m
.........\........\....\......\flxor.dll
.........\........\....\......\flxor.m
.........\........\....\......\flxor.mexglx
.........\........\....\......\gwnoise.m
.........\........\....\......\homopuls.c
.........\........\....\......\homopuls.dll
.........\........\....\......\homopuls.mexglx
.........\........\....\......\librnew.mdl
.........\........\....\......\modmap.m
.........\........\....\......\qaskenco.m
.........\........\....\......\randint.m
.........\........\....\......\rcosfir.m
.........\........\....\......\rcosine.m
.........\........\....\......\regdown.c
.........\........\....\......\regdown.dll
.........\........\....\......\regdown.mexglx
.........\........\....\......\regshift.c
.........\........\....\......\regshift.dll
.........\........\....\......\regshift.mexglx
.........\........\....\......\sbiterr.m
.........\........\....\......\schdint.c
.........\........\....\......\schdint.dll
.........\........\....\......\schdint.mexglx
.........\........\....\......\sdsprandsrc2.dll
.........\........\....\......\sdsprandsrc2.mexaxp
.........\........\....\......\sdsprandsrc2.mexglx
.........\........\....\......\sdsprandsrc2.tlc
.........\........\....\......\simbi2de.c
.........\........\....\......\simbi2de.dll
.........\........\....\......\simbi2de.mexglx
.........\........\....\......\simde2bi.c
.........\........\....\......\simde2bi.dll
.........\........\....\......\simde2bi.mexglx
.........\........\....\......\sinc.m
.........\........\....\......\srcsicon.m
.........\........\....\......\trigicon.m
.........\........\....\......\trigwksp.c
.........\........\....\......\trigwksp.dll
.........\........\....\......\trigwksp.mexglx
.........\........\....\librnew.mdl
.........\........\....\msk.m
.........\........\....\msk.mdl
.........\........\....\nrz.m

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • matlab
    本章将涉及比较深层的 MATLAB 内容:脚本;函数(一般函数、内联函数、子函数、 私用函数、方法函数);程序调试和剖析;数据结构(类、对象);重载和继承;面向对象 编程。本章配备了许多精心设计的算例。这些算例是完整的,可直接演练的。读者通过这些 算例,将真切感受到抽象概念的内涵、各指令间的协调,将从感知上领悟到面向对象编程的 优越和至关要领。(MATLAB )
    2010-03-09 22:30:34下载
    积分:1
  • example4_3
    例3:分析占空比为ta的矩形脉冲频谱 T=1 时间窗大小 ta=0.5 占空比 N=256 t=linspace(-T,T,N) ts=2*T/N fs=1/ts (x=zeros(1,N) x(N/2-round(N/2*ta):N/2+round(N/2*ta))=ones(1,2*round(N/2*ta)+1) y=fft(x,N) figure plot(t,x) title([ 时域信号图 占空比为 ,num2str(ta)]) axis([-T T-0.2 1.2]) xlabel( t /s ) figure subplot(211) f=linspace(-fs/2,fs/2,N) plot(f,abs(fftshift(y))/N) title([ 矩形脉冲双边谱 脉冲时间t=[- ,num2str(ta*T), , ,num2str(ta*T), ] ]) xlabel( f /Hz ) )
    2010-05-25 20:59:59下载
    积分:1
  • gongetidufa
    一种共轭梯度法的matlab函数,可以用于求解病态的线性方程组,提高求解精度.还提供了算法的介绍文档(A conjugate gradient method of matlab function, can be used to solve ill-conditioned linear equations, improve the accuracy of solving)
    2016-11-27 00:28:58下载
    积分:1
  • VIP
    Binary Subtraction performs binary subtraction for two bit arrays and produces back the result, can be used if you represent your bits/symbols as array elements.
    2010-08-26 17:53:23下载
    积分:1
  • am
    说明:  it is a simulink matlab code of am
    2009-07-29 16:43:59下载
    积分:1
  • C2G2FSnake
    this program treat image processing and segmentation methods and can help for functions which concern segmentation, snakes (active contours)
    2014-08-31 01:16:38下载
    积分:1
  • mpeg-coding
    mpeg object based coding in matlab
    2013-04-30 17:07:32下载
    积分:1
  • base-GSO
    自己调试的GSO程序,简单可运行,适合初学者参考。(The glowworm swarm optimization (GSO) is a swarm intelligence optimization algorithm developed based on the behaviour of glowworms (also known as fireflies or lightning bugs). The behaviour pattern of glowworms which is used for this algorithm is the apparent capability of the glowworms to change the intensity of the luciferin emission and thus appear to glow at different intensities.)
    2013-12-17 11:15:33下载
    积分:1
  • imageprocessing
    ل ك و د ب ي ف ر ق ب ي ن م ج م و ع ت ي ن م خ ت ل ف ي ن م ن ا ل ص و ر و ب ي ح ط ك ل و ا ح د ه ف ى ك ل ا س ف ا ك ر ة ا ل ك ل ا م د ه ؟ م ج م و ع ه ب ي ي د ي ه ا ا ص ف ا ر و م ج م و ع ه ب ي د ي ه ا و ح ا ي د
    2012-12-02 06:41:17下载
    积分:1
  • new_colour
    A matlab version of object detector and tracker to be used as an auxiliary function for various computer vision applications
    2014-10-27 17:26:57下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 42今日下载