8.1.1 1変数関数のグラフ Plot[]

1変数関数のグラフを描くのに Plot[ ] という関数が使える。

  Plot[4x^3-8x^2-4x+9,{x,-2,3}]

  Plot[4x^3-8x^2-4x+9,{x,-2,3},PlotRange->Full]

  Plot[4x^3-8x^2-4x+9,{x,-2,3},PlotRange->Full,AspectRatio->1]

  Plot[4x^3-8x^2-4x+9,{x,-2,3},PlotRange->Full,AspectRatio->Automatic]

Option の選び方は案外難しい。 余裕のあるときに、 Plot[] のヘルプを参考に色々試してみることを勧める。

図 12: $ f(x)=4x^3-8x^2-4x+9$ ( $ -2\le x\le 3$) のグラフ
Image sampleplot

グラフィックス関係のオプションについては、 8.3.2 を参照すること。



桂田 祐史