𝑦 = 2𝑐𝑜𝑠3𝑥
古いコメントを表示
回答 (2 件)
Image Analyst
2021 年 5 月 16 日
numPoints = 1000;
x = linspace(-3*pi, 3 * pi, numPoints);
y = 2 * cos(3 * x);
plot(x, y, 'b-', 'LineWidth', 2);
grid on;
xlabel('x', 'FontSize', 18);
ylabel('y', 'FontSize', 18);

Alan Stevens
2021 年 5 月 16 日
help plot
カテゴリ
ヘルプ センター および File Exchange で 2-D and 3-D Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!