Filter löschen
Filter löschen

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

4 Ansichten (letzte 30 Tage)
I need this question answer for my mid exam

Antworten (2)

Walter Roberson
Walter Roberson am 5 Nov. 2023

Image Analyst
Image Analyst am 5 Nov. 2023
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 Kommentare
Dyuman Joshi
Dyuman Joshi am 5 Nov. 2023
Bearbeitet: Dyuman Joshi am 5 Nov. 2023
Yes, I have 7 quick replies ready to go, which I use often.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by