Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
I would like to synthesize two waveforms that are different in terms of amplitude with each other.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Dear Sir or Madam,
I would like to synthesize two waveforms that are different in terms of amplitude in MATLAB.
But, I can't do it.
I'm glad if you tell me the way.
Sincerely,
2 comentarios
Atsushi Matsumoto
el 22 de Dic. de 2017
Do you want to multiply two wave forms in MATLAB not in Simulink?
日本語で質問しても大丈夫ですよ。
 
How about this
t = 0:1/44100:0.04;
wave1 = sin(2*pi*1500*t);
wave2 = 0.5*square(2*pi*100*t)+0.5;
synthWave = wave1.*wave2;
subplot(3,1,1)
plot(t,wave1)
subplot(3,1,2)
plot(t,wave2)
subplot(3,1,3)
plot(t,synthWave)
Atsushi
Respuestas (0)
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!