1)正弦函数 figure; axis([0 1 0 1]); t=0:0.001:50; y=A*sin(2*H*50*t); plot(t(1:50),y(1:50)); title('正弦函数'); xlabel('t/cm','fontsize',10); ylabel('f/cm','fontsize',10);
下面是运行的图:
图7 正弦曲线图
2)三角波函数 figure; axis([0 1 0 1]); t=0:0.001:2.5;
y=A*sawtooth(2*H*2*t);