Wolfram Language Fast Introduction for Math Students
使い始めよう »

2Dのプロット

多項式関数の2Dプロットを生成します:

(定義域は,{x,min,max} という区間表記で定義します.)
In[1]:=
Click for copyable input
Plot[x^2 + 2 x + 1, {x, -10, 10}]
Out[1]=

あるいは,不等式集合の2D領域をプロットします:

&&は,Andの記号です.)
In[2]:=
Click for copyable input
RegionPlot[Reduce[{x^2 + y < 2 && x + y < 1}], {x, -3, 3}, {y, -3, 3}]
Out[2]=

凡例の追加等,可視化をカスタマイズするためのオプションもいろいろあります:

In[1]:=
Click for copyable input
Plot[{x^3, x^2, x}, {x, -2, 2}, PlotLegends -> "Expressions"]
Out[1]=

プロットを塗り潰して,曲線の下の領域を可視化することもできます:

In[2]:=
Click for copyable input
Plot[1/x, {x, -3, 3}, Filling -> Axis]
Out[2]=

Showを使うと,異なるプロットタイプを組み合せることができます:

In[1]:=
Click for copyable input
Show[{Plot[x^2 + 2, {x, -3, 3}], 
  RegionPlot[2 x > y - 3, {x, -3, 3}, {y, 0, 9}]}]
Out[1]=

参照:関数の可視化 »

参照:グラフィックスオプションとスタイル »