フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

I would like to synthesize two waveforms that are different in terms of amplitude with each other.

1 回表示 (過去 30 日間)
SHUNSUKE YAMANAKA
SHUNSUKE YAMANAKA 2017 年 12 月 15 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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 件のコメント
Birdman
Birdman 2017 年 12 月 15 日
編集済み: Birdman 2017 年 12 月 15 日
What do you mean by synthesize? Also the waveform is sine or something else?
Atsushi Matsumoto
Atsushi Matsumoto 2017 年 12 月 22 日
Do you want to multiply two wave forms in MATLAB not in Simulink?
日本語で質問しても大丈夫ですよ。
&nbsp
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

回答 (0 件)

この質問は閉じられています。

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!