フィルターのクリア

MATLAB code for the expression 1*sin(2*pi*14*t) + 7*cos(2*pi*16*t) + 4*cos(2*pi*10*t)

4 ビュー (過去 30 日間)
Amit
Amit 2023 年 11 月 5 日
コメント済み: Steven Lord 2024 年 5 月 13 日
I need this question answer for my mid exam
  1 件のコメント
Dyuman Joshi
Dyuman Joshi 2023 年 11 月 5 日
"I need this question answer for my mid exam"
So you are asking us to help you cheat?

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

回答 (2 件)

Walter Roberson
Walter Roberson 2023 年 11 月 5 日

Image Analyst
Image Analyst 2023 年 11 月 5 日
This looks like a homework problem. If you have any questions ask your instructor or read the link below to get started:
Obviously we can't give you the full solution because you're not allowed to turn in our code as your own.
Generic hint:
numPoints = 300;
t = linspace(0, 100, numPoints);
omega = .02;
y = 10 * sin(2 * pi * omega * t);
plot(t, y, 'b-', 'LineWidth', 2);
grid on;
xlabel('t')
ylabel('y')
To learn other fundamental concepts, invest 2 hours of your time here:
  4 件のコメント
Dyuman Joshi
Dyuman Joshi 2023 年 11 月 5 日
編集済み: Dyuman Joshi 2023 年 11 月 5 日
Yes, I have 7 quick replies ready to go, which I use often.

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

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by