摘要: clear Ts=0.0001; t=0:Ts:10; mt=sin(2*pi*t); subplot(211);plot(t,mt) title('sin(2*\pi*t)') axis([0 5 -1.1 1.1]); grid on %求m(t)的希尔变换 hilbert_m=hilbert( 阅读全文
posted @ 2021-03-27 15:24 liyou555 阅读(2365) 评论(0) 推荐(1) 编辑
摘要: T=0.0001; t=0:T:20; m=sin(6*pi*t); plot(t,m); axis([0 2*pi -1.1 1.1]); %使用 TeX 标记将希腊字母和其他特殊字符包括在标签中 xlabel({'时间/s','0 \leq x \leq 2\pi'});ylabel('电压/V 阅读全文
posted @ 2021-03-27 10:05 liyou555 阅读(494) 评论(0) 推荐(0) 编辑
摘要: 1.网格线设置 T=0.0001; t=0:T:20; m=sin(6*pi*t); plot(t,m); axis([0 1 -1.1 1.1]); grid on %主网格线 grid minor %次网格线%取消网格线grid off 阅读全文
posted @ 2021-03-27 09:54 liyou555 阅读(52) 评论(0) 推荐(0) 编辑