Gnuplot
From Wikipedia, the free encyclopedia
gnuplot(ニュープロット しばしばグニュープロットとも)は、2次元もしくは3次元のグラフを作成するためのアプリケーションソフトウェアである。インターネットにおいて無料で配布されているフリーウェアである。1986年に最初のバージョンが開発された。現在では、Linux、UNIX、Windows、macOSなどの多くのオペレーティングシステム (OS) に対応したバージョンが開発されている。

オープンソースソフトウェアとして公開されており、高機能・高精度であることから、特に学術研究に広く利用されている。また、使い方を解説したWebサイトも数多く存在する。
機能
名称とライセンス
使用例

使用したコマンドと結果として出力された画像を示す。
# Output to png file:
set terminal png small color
set output "logarithmic_spiral.png"
# Same scale for both axes, half-size output:
set size ratio -1 0.5, 0.5
# More sample points to produce smoother picture:
set samples 170
# Axes in the center, no tick marks:
set zeroaxis
set noxtics
set noytics
set noborder
set polar
# set title "Logarithmic spiral (pitch 10 degrees)"
plot [-4*pi:4*pi] [-8:10] [-8:6] 1.19**t notitle