i want to create 2 sinusoid signals and adding it then create time domain of it first signal amplitude 110 50hz second signal amplitude 10 250hz
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
zayaz aya
el 29 de Mzo. de 2018
Respondida: Birdman
el 29 de Mzo. de 2018
t = (0:0.001:1)'; y1 = sin(2*pi*50*t) y2 = sin(2*pi*120*t)
plot(y1,y2)
0 comentarios
Respuesta aceptada
Birdman
el 29 de Mzo. de 2018
t = (0:0.001:1);
y1 = 110*sin(2*pi*50*t);
y2 = 10*sin(2*pi*250*t);
plot(t,y1,t,y2)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Multirate Signal Processing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!