- 19
- 0
- 约2.42千字
- 约 49页
- 2018-02-09 发布于贵州
- 举报
第5章 Matlab平台介绍课件
快速Fourier变换 N=8;? n=0:N-1;? xn=[4?3?2?6?7?8?9?0];? xk=fft(xn) ans=? 卷积 x=[4 3 2 1 0 1 2 3]; y=[1 1 1 1 1 1 1 1 1]; fx=fft(x,19) fx=? fy=fft(y,19) fy=? xy=conv(x,y) xy=? yx=ifft(fx.*fy) yx=? real(yx) ans=? 微积分 编制fun.m文件:Medit窗口中编写: 求{积分符号}(0:1)(x/(x^2+4))dx的值 fun.m function f=fun(x) f=x./(4+x.^2); 命令窗口: quad(‘fun’,0,1) ans=? 复变函数 复数方程求根 solve(‘x^3+8=0’) ans=? 1、Laplace变换 syms a s t w x laplace(x^5) ans=? laplace(exp(a*s)) ans=? 2、逆变幻 ilaplace(1/(s-1)) ans=? 3、Fourier变幻 syms t v w x fourier(1/t) ans=? fourier(exp(-x^2),x,t) ans=? ifourier(1/(1+w^2),u) ans=? 概率统计 平均数 d=[74.001 74.005 74.001 74.
原创力文档

文档评论(0)