필터 지우기
필터 지우기

How can i make this chart?

조회 수: 2 (최근 30일)
Ruxandra Ionescu
Ruxandra Ionescu 2021년 9월 5일
댓글: Ruxandra Ionescu 2021년 9월 5일
I'm a beginner, I can't make it identical. Can someone help me?
The expression is: cos(2*pi*t)*exp(-t)

채택된 답변

Chunru
Chunru 2021년 9월 5일
t = 0:0.1:5;
x = cos(2*pi*t).*exp(-t);
plot(t, x);
xlabel('t');
ylabel('x(t)');

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by