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
2021년 3월 7일
Whats your attempt so far?
Nikitas Valtadoros
2021년 3월 7일
Jorg Woehl
2021년 3월 7일
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.
Nikitas Valtadoros
2021년 3월 7일
답변 (1개)
see what this does:
t = 0:0.01:2*pi;
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에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
