0

请有人帮我,我需要用吉布斯振荡来绘制这个闭合的波齿,我有一天要做,但我从来没有用 Matlab 绘制。

这是我尝试为吉布斯振荡波编程的图表:http: //imageshack.us/a/img585/9724/kakai12.jpg

这就是我所做的,但如果它以这种方式工作,则不是真的。

clear all; 
syms x n; 
f=(-4)*(x-pi); 
T=2; w0=((2*pi)/T); 
fb=f*sin(n*w0*x); 
bn=(2/x)*int(fb,x,0,2*pi); 
x=0:1/(1000):15; 
bn_12=bn*sin(n*w0*x); 
c=1; j=100; 
fs=symsum(bn_12,n,c,j)

有人可以帮我吗。

4

1 回答 1

0

现在无法测试这个,但这样的东西应该可以工作:

t = -4:0.01:4 %Create numerical vector of time
T = 2; %Period, adjust as suitable
V = 4; %Adjust to appropriate amplitude
w0 = 2*pi/T; %Angular frequency

line = (V/pi) * w0 * t - V; %Start with straight line with correct gradient and y intercept
%Then subtract 2*V for every 2*pi
step = floor((w0 * t) / (2*pi))*2*V; %So step should be a step function that steps up 2V every 2pi
sawtooth = line  - step;

plot(w0*t, sawtooth)
于 2012-10-16T15:21:23.253 回答