답변 (2개)

Hernia Baby
Hernia Baby 2021년 9월 17일
편집: Hernia Baby 2021년 9월 18일

2 개 추천

If you have symbolic math toolbox, you can use fplot.
syms t;
x = (12 + 7*sin(pi*t - (1/3)*pi) )*cos(13*pi*t)
x = 
fplot(t,x)
Image Analyst
Image Analyst 2021년 9월 17일

2 개 추천

Try this:
t = linspace(-pi, pi, 1000);
xt = (12 + 7 * sin(pi * t - (1/3 * pi))) .* cos(13 * pi * t);
plot(t, xt, 'b-', 'LineWidth', 2);
grid on;
xlabel('t', 'FontSize', 20);
ylabel('x(t)', 'FontSize', 20);

카테고리

태그

질문:

2021년 9월 17일

편집:

2021년 9월 18일

Community Treasure Hunt

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

Start Hunting!

Translated by