《matlab第五章》PPT课件.ppt

  1. 1、本文档共54页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
《matlab第五章》PPT课件

5.3.1 幅度键控(ASK) x=[1 2 3 1 2 3 0 4 3] y=pammod(x,5) y = -2 0 2 -2 0 2 -4 4 2 5.3.1 幅度键控(ASK) 5.3.2 频移键控(FSK) 将数字信号调制在载波的频率上的调制方法称为频移键控(FSK),它也包括二电平频移键控(BFSK)和多电平频移键控(MFSK)。 频移键控的原理与调频类似,只是使用数字信号而已。 5.3.2 频移键控(FSK) 对上例的二元序画出2FSK的波形, x=0:0.01:8; t=[ones(1,100),zeros(1,100),ones(1,100),ones(1,100),zeros(1,100),zeros(1,100),ones(1,100),zeros(1,101)] y=sin(x.*(2*pi+2*t)); plot(x,y) 5.3.2 频移键控(FSK) 可以看出,载频有所改变,由于调频同时必然带来了相位的改变,所以有相位的突变。 FSK波形 5.3.2 频移键控(FSK) 调制 y = fskmod(x,M,freq_sep,nsamp) outputs the complex envelope y of the modulation of the message signal x using frequency shift keying modulation. M is the alphabet size and must be an integer power of 2. The message signal must consist of integers between 0 and M-1. freq_sep is the desired separation between successive frequencies in Hz. nsamp denotes the number of samples per symbol in y and must be a positive integer greater than 1. The sampling rate of y is 1 Hz. By the Nyquist sampling theorem, freq_sep and M must satisfy (M-1)*freq_sep = 1. If x is a matrix with multiple rows and columns, the function processes the columns independently. 5.3.2 频移键控(FSK) 调制 y = fskmod(x,M,freq_sep,nsamp,Fs) specifies the sampling rate of y in Hz. Because the Nyquist sampling theorem implies that the maximum frequency must be no larger than Fs/2, the inputs must satisfy (M-1)*freq_sep = Fs. 解调 z = fskdemod(y,M,freq_sep,nsamp) z = fskdemod(y,M,freq_sep,nsamp,Fs) 5.3.2 频移键控(FSK) M = 4; freqsep = 8; nsamp = 8; Fs = 32; x = randint(6,1,M) % Random signal y = fskmod(x,M,freqsep,nsamp,Fs); % Modulate. t=0:1:47; plot(t,y) 5.3.2 频移键控(FSK) 5.3.3 相移键控(PSK) 1 简介 将信道发送的信息调制在载波的相位上,所以通过数字相位调制,数字信号的载波相位是 , m=0,1,……,M-1。对二进制调制,两个载波的相位分别是0, 。对于M进制的相位调制,一组M个载波调相信号的波形的一般表达式为: m=0,1,……,M-1 其中 为发射端的滤波脉冲,决定了信号的频谱特征,A是信号振幅。 5.3.3 相移键控(PSK) 2 matlab函数 调制 y = pskmod(x,M) M is the alphabet size and must be an integer

文档评论(0)

wuyoujun92 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档