Generates a sawtooth wave with amplitude of 1 unit, a frequency of 2 Hz or (4pi radians per second) and a phase shift of pi/4 radian.
7 次查看(过去 30 天)
显示 更早的评论
Generates a sawtooth wave with amplitude of 1 unit, a frequency of 2 Hz or (4pi radians per second) and a phase shift of pi/4 radian.
0 个评论
采纳的回答
Yazan
2021-7-1
% amplitude
amp = 1;
% fundamental frequency
f = 2;
% time span of 10 periods
T = 10/f;
% phase shift
theta = pi/4;
% sampling frequency (for example 20*f)
fs = 20*2;
% time intsants
t = 0:1/fs:T-1/fs;
% generate signal
x = sawtooth(2*pi*f*t+theta);
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Waveform Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!