第7回 
 ターミナルミュレータおよびgnuplotの使い方 
-  GNOME端末 (手引 3.10, p.107)
 
 -  ターミナルミュレータとは.シェルとは.
 
-  GNOME端末を開く.プロンプトについて.
 
-  コマンドの例: date コマンドとそのオプション.(date -u.) 
      エラーの場合.cal コマンドとその引数.(cal 8 2005.)
 
-  マニュアルページの参照: man(jman) コマンド. (man date. man man.)
 
-  ヒストリー機能.コマンドラインの編集,補完(Tab).
 
-  コマンドの中断.C-z,ps と kill (-9).(bc コマンドでやってみる.)
 
-  コマンドの強制終了 C-c.(ping コマンドでやってみる.)
 
-  バックグラウンドジョブ.(xcalc &.)
 
-  カレントディレクトリ(ワーキングディレクトリ)とpwd コマンド.
      パス."~"(ホームディレクトリ),
      "."(カレントディレクトリ),
      ".."(親ディレクトリ).cd コマンド.
 
-  ls コマンド.-a, -l オプション.
 
-  less (lv) コマンド.
 
-  cp, mv, rm, mkdir, rmdir.
 
-  exit で終了.
 
 
-  gnuplot (参考書:「使いこなすGNUPLOT」,大竹 敢,テクノプレス.)
 
 -  gnuplotの概要.
 
-  GNOME端末から(cd ~/IL した後)起動.
 
-  関数のplot.xが変数.plot sin(x)/x.q でX上のplot windowは消える.
 
-  quit で終了.再起動.
 
-  plot sin(0.5*x)/(0.5*x), sin(x)/x, sin(2*x)/(2*x).
 
-  範囲の指定.ヒストリー機能.
      plot [-5*pi:5*pi] sin(0.5*x)/(0.5*x), sin(x)/x, sin(2*x)/(2*x).
 
-  setの使い方,その概念. set samples 10. plot sin(x)/x. set samples 100.
      (defaultに戻す.)
 
-  helpの使い方.(階層構造になっている.)
 
-  データのプロット.サンプルをダウンロード.
      plot "sample_gp.dat". plot "sample_gp.dat" with lines.
 
-  3次元プロット splot.x,yが変数.
      splot [-pi:pi] [-pi:pi] sin(x**2+y**2)/(x**2+y**2).
 
-  set isosamples 30 でやってみる.replotを使う.(矢印キーで回転できる.)
 
-  値なしの(un)set.(un)set hidden3d. (un)set contour.
 
-  ファイルへの出力.set terminal,set output の意味.
      set terminal png color; set output "plot1.png".
 
-  epsの例:
      set terminal postscript eps color; set output "plot1.eps".
 
 
授業で使うgnuplot用のサンプルデータ。
 sample_gp.dat 
 戻る 
2005/6/2 更新