How do i plot this equation in the time domain

5 • [1+K • m(t)]cos(2π1 t)
m(t)=1/5

댓글 수: 4

Stephan
Stephan 2021년 3월 7일
Whats your attempt so far?
i dont know what to use as t
What is the value of K? Why do you write m as a function of t when it actually is a constant? What about the "1" in the argument of the cosine function? We can help if you provide us with all the details surrounding your equation.
I go the function from this, where The equation of the modulated signal is: s(t) = Ac • [1+K • m(t)]cos(2πfc t) = 5 • [1+K • m(t)]cos(2π1 t) , and i need to plot the signal in the time domain which is something i have no idea how to do and im i cant find anywhere how :(

댓글을 달려면 로그인하십시오.

답변 (1개)

Stephan
Stephan 2021년 3월 7일
편집: Stephan 2021년 3월 7일

0 개 추천

see what this does:
t = 0:0.01:2*pi;
also read about function handles in Matlab:
fun = @(t) 5 * (1 + K * m) .* cos(2*pi.*t)
Note that you have to define K also as a numeric value before you can claculate something with this...

카테고리

도움말 센터File Exchange에서 Data Type Identification에 대해 자세히 알아보기

태그

질문:

2021년 3월 7일

댓글:

2021년 3월 7일

Community Treasure Hunt

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

Start Hunting!

Translated by