Sawtooth Waveform With Variable Frequency and constant amplitude
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ranjit Kumar Chennamchetty
el 21 de Oct. de 2019
Editada: Ranjit Kumar Chennamchetty
el 23 de Oct. de 2019
How can I create a sawtooth wave with external inputs such as constant amplitude (2*Pi) and variable frequency in simulink?
0 comentarios
Respuestas (1)
ABHILASH SINGH
el 21 de Oct. de 2019
T = 10*(1/50);
fs = 1000;
t = 0:1/fs:T-1/fs;
a=2*pi;
x = a*sawtooth(2*pi*50*t,1/2);
plot(t,x)
1 comentario
Ranjit Kumar Chennamchetty
el 21 de Oct. de 2019
Editada: Ranjit Kumar Chennamchetty
el 23 de Oct. de 2019
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!