您好,欢迎访问三七文档
当前位置:首页 > 商业/管理/HR > 公司方案 > 基于Matlab的零输入和零状态响应
为搞好山东省交通科学研究所研发基地项目的结算审计工作,我跟踪审计部特针对本项目作如下要求,请各施工单位、供货单位遵照执行:andperformancetestcopiesoftherecord.Ifnecessary,reviewshouldbecarriedout;4)forspringhangers(includedsimplespring,hangersandconstantsupporthangers)itshouldalsoberecognizedassettingandlockingofloads.5)checkthesurfacequality,foldedlayeringandwithoutcracks,rustandotherdefects.5)aftercompletionofthetestandcontroldrawingnumberonebyone,byseriesbaled.Coloralloysteelparts,thepartsmarkinginstallationlocationandrotationaboutthedirectionyouwant.7.3.14.hangersinstallation7.3.14.1hangerlayouta.acleardesignofhangershouldbeinstalledstrictlyinaccordancewiththedrawingsanddesignsshallnotbeinstalledwrong,missing,etc.B.ownarrangementofpipingsupportandhangersetandselectionshouldbebasedoncomprehensiveanalysisofgenerallayoutofpipingsystems;coldinstallationofsteampipewithparticularattentionreservedforcompensationofthermalexpansiondisplacementandorientation.C.supportsystemsshouldberationaltowithstandpipeloads,staticloadandincidentalload;reasonablepipingdisplacement;guaranteedundervariousconditions,stressarewithintheallowedrange.Strength,stiffness,andmeetrequirementstopreventvibrationandsoothingwater,withoutaffectingtheadjacentequipmentmaintenanceandotherpipinginstallationandexpansion.D.equipmentconnectedtotheinterfacetomeetpipelinethrust(torque)limitrequirements;increasethestabilityofpipingsystemstopreventpipeline...Tubewallthickness(mm)2-34-67-10weldformnoslopemouthweldstrengtheningheighth(mm)1-1.51.5-2weldwidthb(mm)5-67-6hasslopemouthweldstrengtheningheighth(mm)1.5-22weldwidthb(mm)coverhadeachedgeslopemouthabout2mmargonarcweldingweldstrengtheningsurfaceheightandwidthtubewallthickness(mm)2--33--45--6weldformweldstrengtheningheighth(mm)1-1.51.5-22-2.5widthb(mm)一、课程设计题目:信号系统的时域分析二、课程设计目的:1、学习MATLAB软件的使用。2、使学生掌握利用工具软件来实现信号系统基本概念、基本原理的方法。3、通过编程对matlab软件的具体应用有了更好的了解,进一步加强了对函数卷积,零输入,零响应状态这三种函数状态的理解。二、基本原理1、卷积信号的卷积是数学上的一种积分运算,两个信号的卷积定义为:信号的卷积运算在系统分析中主要用于求解系统的零状态响应。一般情况,卷积积分的运算比较困难,但在MATLAB中则变得十分简单,MATLAB中是利用conv函数来实现卷积的。Conv函数功能:实现二个函数和的卷积。格式:说明:表示二个函数,表示两个函数的卷积结果。例:已知两信号f1(t)=ε(t+1)+ε(t-2)f2(t)=ε(t-3)+ε(t-8)为搞好山东省交通科学研究所研发基地项目的结算审计工作,我跟踪审计部特针对本项目作如下要求,请各施工单位、供货单位遵照执行:andperformancetestcopiesoftherecord.Ifnecessary,reviewshouldbecarriedout;4)forspringhangers(includedsimplespring,hangersandconstantsupporthangers)itshouldalsoberecognizedassettingandlockingofloads.5)checkthesurfacequality,foldedlayeringandwithoutcracks,rustandotherdefects.5)aftercompletionofthetestandcontroldrawingnumberonebyone,byseriesbaled.Coloralloysteelparts,thepartsmarkinginstallationlocationandrotationaboutthedirectionyouwant.7.3.14.hangersinstallation7.3.14.1hangerlayouta.acleardesignofhangershouldbeinstalledstrictlyinaccordancewiththedrawingsanddesignsshallnotbeinstalledwrong,missing,etc.B.ownarrangementofpipingsupportandhangersetandselectionshouldbebasedoncomprehensiveanalysisofgenerallayoutofpipingsystems;coldinstallationofsteampipewithparticularattentionreservedforcompensationofthermalexpansiondisplacementandorientation.C.supportsystemsshouldberationaltowithstandpipeloads,staticloadandincidentalload;reasonablepipingdisplacement;guaranteedundervariousconditions,stressarewithintheallowedrange.Strength,stiffness,andmeetrequirementstopreventvibrationandsoothingwater,withoutaffectingtheadjacentequipmentmaintenanceandotherpipinginstallationandexpansion.D.equipmentconnectedtotheinterfacetomeetpipelinethrust(torque)limitrequirements;increasethestabilityofpipingsystemstopreventpipeline...Tubewallthickness(mm)2-34-67-10weldformnoslopemouthweldstrengtheningheighth(mm)1-1.51.5-2weldwidthb(mm)5-67-6hasslopemouthweldstrengtheningheighth(mm)1.5-22weldwidthb(mm)coverhadeachedgeslopemouthabout2mmargonarcweldingweldstrengtheningsurfaceheightandwidthtubewallthickness(mm)2--33--45--6weldformweldstrengtheningheighth(mm)1-1.51.5-22-2.5widthb(mm)求卷积MATLAB程序如下:t1=-1:0.01:2;f1=ones(size(t1));%高度为一的门函数,时间从t=-1到t=2t2=3:0.01:8;f2=ones(size(t2));%高度为一的门函数,时间从t=3到t=8g=conv(f1,f2);%对f1和f2进行卷积t3=2:0.01:10;subplot(3,1,1),plot(t1,f1),title(‘f1’);grid%画f1的波形subplot(3,1,2),plot(t2,f2),title(‘f2’);grid%画f2的波形subplot(3,1,3),plot(t3,g),title(‘f1*f2’);grid%画g的波形为搞好山东省交通科学研究所研发基地项目的结算审计工作,我跟踪审计部特针对本项目作如下要求,请各施工单位、供货单位遵照执行:andperformancetestcopiesoftherecord.Ifnecessary,reviewshouldbecarriedout;4)forspringhangers(includedsimplespring,hangersandconstantsupporthangers)itshouldalsoberecognizedassettingandlockingofloads.5)checkthesurfacequality,foldedlayeringandwithoutcracks,rustandotherdefects.5)aftercompletionofthetestandcontroldrawingnumberonebyone,byseriesbaled.Coloralloysteelparts,thepartsmarkinginstallationlocationandrotationaboutthedirectionyouwant.7.3.14.hangersinstallation7.3.14.1hangerlayouta.acleardesignofhangershouldbeinstalledstrictlyinaccordancewiththedrawingsanddesignsshallnotbeinstalledwrong,missing,etc.B.ownarrangementofpipingsupportandhangersetandselectionshouldbebasedoncomprehensiveanalysisofgenerallayoutofpipingsystems;coldinstallationofsteampipewithparticularattentionreservedforcompensationofthermalexpansiondisplacementandorien
本文标题:基于Matlab的零输入和零状态响应
链接地址:https://www.777doc.com/doc-5864374 .html