[MATLAB函数.docxVIP

  1. 1、本文档共7页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
  5. 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
  6. 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们
  7. 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
  8. 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
[MATLAB函数

logspace 对数间隔向量logspace Logarithmically spaced vector. logspace(X1, X2) generates a row vector of 50 logarithmically equally spaced points between decades 10^X1 and 10^X2. If X2 is pi, then the points are between 10^X1 and pi. logspace(X1, X2, N) generates N points.For N = 1, logspace returns 10^X2.loglog loglog Log-log scale plot. loglog(...) is the same as PLOT(...), except logarithmicscales are used for both the X- and Y- axes.semilogxsemilogx Semi-log scale plot. semilogx(...) is the same as PLOT(...), except alogarithmic (base 10) scale is used for the X-axis.实例的区别: x=0:0.1:10; plot(10.^x,x) semilogx(10.^x,x) loglog(10.^x,x) plot(10.^x,x) semilogx(10.^x,x) loglog(10.^x,x)MATLAB函数logspace简介编辑用法:logspace(a,b,n),其中a、b、n分别表示开始值(10^a)、结束值(10^b)、元素个数(n)。功能:生成从10的a次方到10的b次方之间按对数等分的n个元素的行向量。n如果省略,则默认值为50。在matlab的命令窗口中输入help logspace或者doc logspace可以获得更多帮助信息。logspace(1)x=logspace(a,b)生成有50个元素的对数等分行向量x,且x(1)=10的a次方,x(50)=10的b次方;(2)x=logspace(a,b,n)生成有n个元素的对数等分行向量x,且x(1)=10的a次方,x(n)=10的b次方;(3)x=logspace(a,pi)生成有50个元素的对数等分行向量x,且x(1)=10的a次方,x(50)=π ;y=logspace(-1,1); plot(y)matlab中可以用e表示10的几次方。次数较小的时候会直观的给出来,但是次数较多时候它就也用e表示了。eg:3e-4,就还是这种形式。滤波器的设计巴特沃斯低通滤波器buttap Butterworth analog lowpass filter prototype. [Z,P,K] = buttap(N) returns the zeros, poles, and gain for an N-th order normalized prototype Butterworth analog lowpass filter. The resulting filter has N poles around the unit circle in the left half plane, and no zeros. ellipap椭圆模拟低通滤波器原型 ellipap Elliptic analog lowpass filter prototype. [Z,P,K] = ellipap(N,Rp,Rs) returns the zeros, poles, and gain of an N-th order normalized prototype elliptic analog lowpass filter with Rp decibels of ripple in the passband and a stopband Rs decibels down.freqzFrequency response of digital filterSyntax[h,w]=freqz(b,a,n)h=freqz(b,a,w)[h,w]=freqz(b,a,n,whole)[h,f]=freqz(b,a,n,fs)h=freqz(b,a,f,fs)[h,f]=freqz(b,a,n,whole,fs)freqz(b,a,...)freqz(Hd)Description[h,w]?=?freqz(b,a,n) returns the frequency response vector h and the correspond

文档评论(0)

zhuanyewd + 关注
实名认证
文档贡献者

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

1亿VIP精品文档

相关文档