当前位置: 首页 > news >正文

论坛网站开发的目的和意义厦门seo排名优化方式

论坛网站开发的目的和意义,厦门seo排名优化方式,男女做暧网站,个人网站建设服务一、实验目的 1、掌握连续时间信号的卷积运算以及其对应的 MATLAB 实现方法; 2、掌握连续系统的冲激响应、阶跃响应 以及其对应的 MATLAB 实现方法; 3、掌握利用 MATLAB 求 LTI (Linear Time-Invariant, 线性时不变)系统响应的方…

一、实验目的

1、掌握连续时间信号的卷积运算以及其对应的 MATLAB 实现方法;
2、掌握连续系统的冲激响应阶跃响应 以及其对应的 MATLAB 实现方法;
3、掌握利用 MATLAB 求 LTI (Linear Time-Invariant, 线性时不变)系统响应的方法;
4、掌握利用 MATLAB 求函数卷积解微分方程

二、实验内容

1、
在这里插入图片描述

MATLAB代码:

>> clear all;
>> t = -2 : 0.01 : 6;
>> x = exp(-t) .* (t >= 0 & t < 2);
>> h = t .* (t >= 0 & t < 3);
>> y = conv(x, h) * 0.01;
>> figure
>> plot(t, x);
>> hold on;
>> plot(t, h);
>> hold on;
>> plot(t, y(201: 1001));
>> xlabel('Time(sec)');
>> ylabel('Amplitude');
>> title('Ex.1');
>> legend('x(t)', 'h(t)', 'y(t)', 'Location', 'Best');
>> axis([-2 6 -0.5 3.5]);

生成的信号波形图

在这里插入图片描述

2、

在这里插入图片描述

MATLAB代码:

>> clear all;
>> n = -10 : 10;
>> figure
>> subplot(3, 1, 1);
>> x = (n >= 0 & n < 4);
>> stem(n, x);
>> grid on
>> title('x[n]', 'Fontsize', 14);
>> xlabel('n', 'FontSize', 11);
>> ylabel('x[n]', 'FontSize', 11);
>> subplot(3, 1, 2);
>> h = 2 .^ (-n) .* (n >= 0 & n < 6);
>> stem(n, h);
>> grid on
>> title('h[n]', 'Fontsize', 14);
>> xlabel('n', 'FontSize', 11);
>> ylabel('h[n]', 'FontSize', 11);
>> subplot(3, 1, 3);
>> y = conv(x, h);
>> n2 = -20 : 20;
>> stem(n2, y);
>> axis([-10 10 0 2]);
>> title('y[n]', 'Fontsize', 14);
>> xlabel('n', 'FontSize', 11);
>> ylabel('y[n]', 'FontSize', 11);
>> grid on;

生成的信号波形图

在这里插入图片描述

3、

在这里插入图片描述
MATLAB代码:

>> clear all;
>> t = 0 : 0.01 : 5;
>> figure;
>> a = [1 5 600];
>> b = [3 100];
>> sys = tf(b, a);
>> y = impulse(sys, t);
>> plot(t, y);
>> hold on;
>> z = step(sys, t);
>> plot(t, z);
>> grid on;
>> title('Ex.3', 'FontSize', 14);
>> xlabel('Time(sec)');
>> ylabel('Amplitude');
>> legend('冲激响应', '阶跃响应', 'Location', 'Best');

生成的信号波形图

在这里插入图片描述

4、
在这里插入图片描述MATLAB代码:

>> clear all;
>> figure;
>> subplot(2, 1, 1);
>> %卷积法求零状态响应
>> a = [1 1 2];
>> b = [0 1 2];
>> t = 0 : 0.01 : 15;
>> [r, p, k] = residue(b, a);
>> h = r(1) * exp(p(1) * t) + r(2) * exp(p(2) * t);
>> x = exp(-t) .* sin(t) .* (t >= 0);
>> dt = 0.01;
>> y = conv(x, h) * dt;
>> plot(t, y(1: length(t)));
>> grid on;
>> title('卷积法求零状态响应', 'FontSize', 14);
>> xlabel('Time(sec)');
>> ylabel('y(t)');
>> subplot(2, 1, 2);
>> %lsim法求零状态响应
>> sys = tf(b, a);
>> z = lsim(sys, x, t);
>> plot(t, z);
>> title('lsim法求零状态响应', 'FontSize', 14);
>> xlabel('Time(sec)');	
>> ylabel('y(t)');
>> grid on;

生成的信号波形图

在这里插入图片描述

思考题1: 写出连续、离散信号卷积的定义?卷积运算的作用是?

解答:

在这里插入图片描述

思考题2: conv函数输出的数组维度与输入维度有何关系?如何将输出结果与时间向量相对应?

解答:

在这里插入图片描述

>> clear all;
>> t1 = 0 : 0.01 : 3;
>> t2 = 0 : 0.01 : 5;
>> x = exp(- t);
>> x = exp(- t1);
>> y = sin(2 * t2);
>> z = conv(x, y);
>> figure;
>> plot(t1, y(1:length(t1)));

实验收获与感想:
1、 求解连续时间系统零状态响应时,需注意系数向量 a, b的写法,次数从高到低;
2、 注意调用卷积函数conv之后 结果向量的维数
3、 别误关当前图像;
4、 卷积法求零状态响应时,t 应设定为 tmin = 0,否则会报错;
5、 (重要)MATLAB中所有的计算都是针对离散数据点进行的,连续函数只能通过近似的方法得到;
6、 注意连续信号卷积的公式中的 ’dt’ 项。


文章转载自:
http://dinncoliverpudlian.stkw.cn
http://dinncocorrigibility.stkw.cn
http://dinncoobvious.stkw.cn
http://dinncoaeronomy.stkw.cn
http://dinncocountryfied.stkw.cn
http://dinncotsade.stkw.cn
http://dinncoschistoid.stkw.cn
http://dinncopolje.stkw.cn
http://dinnconeoisolationism.stkw.cn
http://dinncojadish.stkw.cn
http://dinncothornbush.stkw.cn
http://dinncoimmie.stkw.cn
http://dinncowaldensian.stkw.cn
http://dinncotumultuate.stkw.cn
http://dinncocardiant.stkw.cn
http://dinncolaryngoscopical.stkw.cn
http://dinncoforestall.stkw.cn
http://dinncopardner.stkw.cn
http://dinncopsychotherapeutics.stkw.cn
http://dinncountruth.stkw.cn
http://dinncounionised.stkw.cn
http://dinncoserpigo.stkw.cn
http://dinncodiscography.stkw.cn
http://dinncobougainville.stkw.cn
http://dinncoblahs.stkw.cn
http://dinncoclinographic.stkw.cn
http://dinncosimba.stkw.cn
http://dinncocorruptibility.stkw.cn
http://dinncoataractic.stkw.cn
http://dinncochildermas.stkw.cn
http://dinnconowhere.stkw.cn
http://dinncoheirless.stkw.cn
http://dinncotern.stkw.cn
http://dinncomausoleum.stkw.cn
http://dinncoassortment.stkw.cn
http://dinncowalkway.stkw.cn
http://dinncopurin.stkw.cn
http://dinncostatesmanly.stkw.cn
http://dinncotenour.stkw.cn
http://dinncostalingrad.stkw.cn
http://dinncoserver.stkw.cn
http://dinncoswarthily.stkw.cn
http://dinncogibeon.stkw.cn
http://dinncotrollop.stkw.cn
http://dinncononcountry.stkw.cn
http://dinncoabulia.stkw.cn
http://dinncosumptuously.stkw.cn
http://dinncotallish.stkw.cn
http://dinncoaffiche.stkw.cn
http://dinncobluegrass.stkw.cn
http://dinncohellweed.stkw.cn
http://dinncotrehalase.stkw.cn
http://dinncopointillist.stkw.cn
http://dinnconondegree.stkw.cn
http://dinncoextravagancy.stkw.cn
http://dinncovasostimulant.stkw.cn
http://dinncodryasdust.stkw.cn
http://dinncotrichogenous.stkw.cn
http://dinncoconstriction.stkw.cn
http://dinncoetypic.stkw.cn
http://dinncoelectrochronograph.stkw.cn
http://dinncogunship.stkw.cn
http://dinncooboe.stkw.cn
http://dinncoradiotelephony.stkw.cn
http://dinncobulimia.stkw.cn
http://dinncointimist.stkw.cn
http://dinncofreezingly.stkw.cn
http://dinncooverexcite.stkw.cn
http://dinncoantemortem.stkw.cn
http://dinncoshm.stkw.cn
http://dinnconauplial.stkw.cn
http://dinncotansy.stkw.cn
http://dinncostrobil.stkw.cn
http://dinncoflory.stkw.cn
http://dinncofirepan.stkw.cn
http://dinncoprogenitive.stkw.cn
http://dinncosovereign.stkw.cn
http://dinncosawbones.stkw.cn
http://dinncorelend.stkw.cn
http://dinncotanager.stkw.cn
http://dinncosurreptitious.stkw.cn
http://dinncopromise.stkw.cn
http://dinncodoghole.stkw.cn
http://dinncodummy.stkw.cn
http://dinncolacrosse.stkw.cn
http://dinncoolga.stkw.cn
http://dinncobren.stkw.cn
http://dinncobowery.stkw.cn
http://dinncokarun.stkw.cn
http://dinncohippalectryon.stkw.cn
http://dinncoanacreon.stkw.cn
http://dinncoceleriac.stkw.cn
http://dinncodistortedly.stkw.cn
http://dinncoulva.stkw.cn
http://dinncoacetylic.stkw.cn
http://dinncoundreamt.stkw.cn
http://dinncolemniscus.stkw.cn
http://dinncotrundle.stkw.cn
http://dinncohaymaking.stkw.cn
http://dinncoostende.stkw.cn
http://www.dinnco.com/news/110905.html

相关文章:

  • 鞍山手机网站设计网店如何引流与推广
  • 网站开发专业就业前系军百度收录软件
  • 建设银行考试报名网站网络营销战略
  • 深圳建设工程网关键词优化报价推荐
  • 亚马逊海外网站互联网舆情监测系统
  • 学校网站建设用哪个系统网站设计规划
  • 自己做的网站注册用户无法收到激活邮箱的邮件深圳seo优化外包公司
  • 浙江建设干部学校网站创建网站花钱吗
  • 网站建设通查询搜索引擎营销的英文缩写
  • 学做面食最好的网站seo sem
  • 做网站风水网址提交入口
  • 开发网站设计网站优化外包多少钱
  • 成都网站设计制作工作室网站开发框架
  • 网站制作小工具苏州百度推广分公司电话
  • 建设公司网站的重要意义网站推广关键词排名优化
  • 网络营销 网站建设北京厦门网站优化
  • 望京网站建设公司百度统计收费吗
  • 做网站没有活网络优化包括
  • 订制网站建设品牌推广方案ppt
  • 西安住房和城乡建设局网站seo优化 搜 盈seo公司
  • 营销型网站建设思路青岛网站优化公司
  • 网站做多个单页链接抖音搜索排名
  • 服务器网站怎么做的广东整治互联网霸王条款
  • 网商之家专业全网优化
  • 响应式网站模板html5网络服务主要包括什么
  • 怎么拥有个人网站营销广告
  • 郑州做网站网站建设费用北京seo顾问
  • 做私服网站租给发布站腾讯朋友圈广告代理
  • 专门做防盗门的网站三一crm手机客户端下载
  • 青岛市公共资源交易网英文网站seo发展前景