掲示板:数学月間(第17回)

06_二次元グラフ

投稿日時: 2021/08/13 システム管理者

% 2021-8-13 Ver 1.00

% 関数を-5 5の区間でプロット
fplot(@(x) sin(x))


% 関数を0 5の区間でプロット
fplot(@(x) 3*sin(x)^2+cos(x),[0 5])


% 関数を2ポイントのラインでプロット
fplot(@(x) sin(x+pi/5),'Linewidth',2)


% 関数を2ポイントのラインでプロット
fplot(@(x) sin(x+pi/5),'Linewidth',2);
hold on
fplot(@(x) sin(x^2+pi/5),'--or');
fplot(@(x) sin(x^3+pi/3),'-.*c');
hold off