Feeds
已回答
Rectangular Function implementation in Matlab
rect=@(x,a) ones(1,numel(x)).*(abs(x)<a/2) % a is the width of the pulse x=-10:0.001:10 y=rect(x,2) plot(x,y)
Rectangular Function implementation in Matlab
rect=@(x,a) ones(1,numel(x)).*(abs(x)<a/2) % a is the width of the pulse x=-10:0.001:10 y=rect(x,2) plot(x,y)
7 years 前 | 0
