PGPLOT on Cygwin/X
をテンプレートにして作成
home
>
サイトマップ
開始行:
グラフ表示ライブラリとして一部の業界ではデファクトスタン...
* PGPLOTのインストール [#ldf2a9ff]
せっかくWindowsなのですから,できるだけGUIを利用した方法...
** ソースファイルの入手 [#d8ab3cac]
PGPLOTのサイト から pgplot5.2.tar.gz を入手します.最新バ...
** 解凍 [#l0a8e728]
デスクトップに保存したpgplot522.tar.gzというファイルを解...
** インストールフォルダの作成 [#pdf8a278]
C:\cygwin\usr\localフォルダを開きます.
ここにpgplotとsrcという名前のフォルダを作ります.
** コンパイル準備 - drivers.list編集 [#tb81366b]
いま作ったsrcフォルダに移動し,先ほど解凍してできたpgplot...
そのpgplot(C:\cygwin\usr\local\src\pgplot)フォルダを開...
コピーしたdrivers.listをC:\cygwin\usr\local\pgplotに貼り...
このdrivers.listをテキストエディタで編集します.編集はメ...
先頭に「!」がついている行はコメント行です.このコメントを...
- /GIF
- /VGIF
- /LATEX
- /PS
- /VPS
- /CPS
- /VCPS
- /XTERM
- /XDISP
- /XWINDOW
- /XSERV
のある行のコメントを外せば大丈夫だと思います.
** コンパイル準備 - makefile作成 [#g7477fcd]
コンパイルの手順を示すmakefileというものを作ります.そのm...
Cygwinを立ち上げ,つぎのコマンドを入力します.
$ cd /usr/local/pgplot
$ /usr/local/src/pgplot/makemake /usr/local/src/pgplot cy...
実行したら,C:\cygwin\usr\local\pgplotにいくつか新しくフ...
コンパイル準備 - makefileとソースファイルの修正
本来なら,ここまでで準備完了です.が,Cygwinのバージョン...
まずmakefileです.テキストエディタで開きます. 31,32,34...
修正するのはもう一カ所です.C:\cygwin\usr\local\src\pgplo...
** コンパイル [#g928a8e9]
以上で準備完了,コンパイルします.Cygwinのウィンドウに
$ make
と打ち込みます.しばらくメッセージが流れた後,
*** Finished compilation of PGPLOT ***
Note that if you plan to install PGPLOT in a different
directory than the current one, the following files will...
needed.
libpgplot.a
grfont.dat
rgb.txt
pgdisp
pgxwin_server
Also note that subsequent usage of PGPLOT programs requi...
the full path of the chosen installation directory be na...
an environment variable named PGPLOT_DIR.
というメッセージで止まっていれば正常終了です.さらに,C言...
$ make cpg
しばらくして
*** Finished compilation of the C PGPLOT wrapper library...
Note that if you plan to install the library in a differ...
directory than the current one, both libcpgplot.a and cp...
will be needed.
というメッセージが出れば正常終了です.ここまでくれば無事...
$ make clean
とコマンドを打ちます.
* 環境変数の設定 [#ye1abc52]
PGPLOTの使用する環境変数を設定します.C:\cygwin\home\foo...
このファイルの一番下に
export PGPLOT_DIR=/usr/local/pgplot
export PGPLOT_DEV=/xserv
export LD_LIBRARY_PATH=/usr/local/pgplot
を書き込みます.保存したら,環境変数の設定を反映させるた...
$ source ~/.bashrc
というコマンドを打ち込みます.
* デモプログラムの実行 [#m9809485]
まず,X Window Systemを立ち上げておきます.Cygwinのウィン...
$ startx
と入力します.すると,xtermという仮想ターミナルが立ち上が...
ここからデモプログラムを実行します.実行するには
$ /usr/local/pgplot/pgdemo1
などとコマンドを打ちます.数字の部分は1から17まであるので...
いやはや,Cygwinってすごく便利ですね.こんなにスムーズに...
終了行:
グラフ表示ライブラリとして一部の業界ではデファクトスタン...
* PGPLOTのインストール [#ldf2a9ff]
せっかくWindowsなのですから,できるだけGUIを利用した方法...
** ソースファイルの入手 [#d8ab3cac]
PGPLOTのサイト から pgplot5.2.tar.gz を入手します.最新バ...
** 解凍 [#l0a8e728]
デスクトップに保存したpgplot522.tar.gzというファイルを解...
** インストールフォルダの作成 [#pdf8a278]
C:\cygwin\usr\localフォルダを開きます.
ここにpgplotとsrcという名前のフォルダを作ります.
** コンパイル準備 - drivers.list編集 [#tb81366b]
いま作ったsrcフォルダに移動し,先ほど解凍してできたpgplot...
そのpgplot(C:\cygwin\usr\local\src\pgplot)フォルダを開...
コピーしたdrivers.listをC:\cygwin\usr\local\pgplotに貼り...
このdrivers.listをテキストエディタで編集します.編集はメ...
先頭に「!」がついている行はコメント行です.このコメントを...
- /GIF
- /VGIF
- /LATEX
- /PS
- /VPS
- /CPS
- /VCPS
- /XTERM
- /XDISP
- /XWINDOW
- /XSERV
のある行のコメントを外せば大丈夫だと思います.
** コンパイル準備 - makefile作成 [#g7477fcd]
コンパイルの手順を示すmakefileというものを作ります.そのm...
Cygwinを立ち上げ,つぎのコマンドを入力します.
$ cd /usr/local/pgplot
$ /usr/local/src/pgplot/makemake /usr/local/src/pgplot cy...
実行したら,C:\cygwin\usr\local\pgplotにいくつか新しくフ...
コンパイル準備 - makefileとソースファイルの修正
本来なら,ここまでで準備完了です.が,Cygwinのバージョン...
まずmakefileです.テキストエディタで開きます. 31,32,34...
修正するのはもう一カ所です.C:\cygwin\usr\local\src\pgplo...
** コンパイル [#g928a8e9]
以上で準備完了,コンパイルします.Cygwinのウィンドウに
$ make
と打ち込みます.しばらくメッセージが流れた後,
*** Finished compilation of PGPLOT ***
Note that if you plan to install PGPLOT in a different
directory than the current one, the following files will...
needed.
libpgplot.a
grfont.dat
rgb.txt
pgdisp
pgxwin_server
Also note that subsequent usage of PGPLOT programs requi...
the full path of the chosen installation directory be na...
an environment variable named PGPLOT_DIR.
というメッセージで止まっていれば正常終了です.さらに,C言...
$ make cpg
しばらくして
*** Finished compilation of the C PGPLOT wrapper library...
Note that if you plan to install the library in a differ...
directory than the current one, both libcpgplot.a and cp...
will be needed.
というメッセージが出れば正常終了です.ここまでくれば無事...
$ make clean
とコマンドを打ちます.
* 環境変数の設定 [#ye1abc52]
PGPLOTの使用する環境変数を設定します.C:\cygwin\home\foo...
このファイルの一番下に
export PGPLOT_DIR=/usr/local/pgplot
export PGPLOT_DEV=/xserv
export LD_LIBRARY_PATH=/usr/local/pgplot
を書き込みます.保存したら,環境変数の設定を反映させるた...
$ source ~/.bashrc
というコマンドを打ち込みます.
* デモプログラムの実行 [#m9809485]
まず,X Window Systemを立ち上げておきます.Cygwinのウィン...
$ startx
と入力します.すると,xtermという仮想ターミナルが立ち上が...
ここからデモプログラムを実行します.実行するには
$ /usr/local/pgplot/pgdemo1
などとコマンドを打ちます.数字の部分は1から17まであるので...
いやはや,Cygwinってすごく便利ですね.こんなにスムーズに...
ページ名:
home
>
Modified by
物理のかぎプロジェクト
PukiWiki 1.4.5_1
Copyright © 2001-2005
PukiWiki Developers Team
. License is
GPL
.
Based on "PukiWiki" 1.3 by
yu-ji
Powered by PHP 5.3.29HTML convert time to 0.003 sec.