MATLAB中的绘图程序

时间:2017-11-02 22:52:32

标签: matlab plot graph

我在一页中看过一个情节。我想重新创建一个类似的图,我搜索了代码,但找不到图的代码。附上我想在MATLAB中生成的图 enter image description here

1 个答案:

答案 0 :(得分:3)

作为一个例子,这是一个减弱的正弦曲线图:

A=10;
f=1000;
n=5;
T=1/f;
t=[0:T/100:n*T];
s=A*exp(-t*1000).*sin(2*pi*f*t);

% Here is the bit you'd be interested in:
plot(t,s,'b-','lineWidth',2) %'b-' is blue line.
xlabel('time (s)')
ylabel('amplitude (v)')
set(gca,'linewidth',2)
grid on
ax = gca;
ax.XGrid = 'off';
ax.YGrid = 'on';
set(ax,'GridLineStyle','--')

Live On Coliru

更改公式或数据以获得所需的绘图形状。