필터 지우기
필터 지우기

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

답변 (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 CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by