what is the code to plot this ?
1 回表示 (過去 30 日間)
古いコメントを表示
e^(-0.3237t)*cos(3.4836t)
0 件のコメント
採用された回答
madhan ravi
2018 年 7 月 22 日
編集済み: madhan ravi
2018 年 7 月 22 日
syms t
ezplot(exp(-0.3237*t)*cos(3.4836*t))
その他の回答 (1 件)
Image Analyst
2018 年 7 月 22 日
Try this:
t = linspace(-5, 7, 200);
y = exp(-0.3237 .* t) .* cos(3.4836 * t);
plot(t, y, 'b.-', 'LineWidth', 2, 'MarkerSize', 15);
grid on;
title('y vs. t', 'FontSize', fontSize);
xlabel('t', 'FontSize', fontSize);
ylabel('y', 'FontSize', fontSize);
ax = gca;
ax.YAxisLocation = 'origin';
ax.XAxisLocation = 'origin';
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Surface and Mesh Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!