Error using 'pi' too many input errors with my equation

9 ビュー (過去 30 日間)
Serena Simpson
Serena Simpson 2020 年 9 月 18 日
コメント済み: Serena Simpson 2020 年 9 月 18 日
%Defining given varibles
t = 0 :.1 :3;
f1 = 130;
f2 = 120;
y1 = cosd(2*pi*f1*t);
y2 = cosd(2*pi*f2*t);
%% Section 2: Processing
%equation given
y = 2 * cos(2*pi(f1+f2/2)*t) * cos(2*pi(f1-f2/2)*t);
%% Section 3: Result Output
plot(y)
title('Alternating Loud and Quiet Sounds')
xlabel('Time(s)')
ylabel('Amplitutde')
  1 件のコメント
Serena Simpson
Serena Simpson 2020 年 9 月 18 日
The problem is with my 'y' equation

サインインしてコメントする。

採用された回答

Steven Lord
Steven Lord 2020 年 9 月 18 日
You're missing * operators after the two calls to pi on the line where you define y, just like you did on the lines where you defined y1 and y2.
  1 件のコメント
Serena Simpson
Serena Simpson 2020 年 9 月 18 日
Oh. I see now. Thank you so much!!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAudio Processing Algorithm Design についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by