Linux
Install CentOS 7 on VMware Workstation 12 Player on Windows 8.1 (x86-64)
これまで,Debian,CentOS,Scientific Linux,Ubuntuと使ってきましたが,Ubuntu 14.04LtsでDennou RubyのGPhysがどうしてもインストールできなかったため,Cent […]
VMware Toolsのアップデート
VMware PlayerでVMware Toolsのアップデートの案内があった場合のアップデートの方法です.VMware Toolsのインストールをクリックすると自動的に以下にマウントされました.ただし,teemはユー […]
Problem of symbolic link on shared folders
Symbolic link did not work on shared folders of Windows host and linux guest using VMware. The error message i […]
Check linefeed code and character encoding on Linux
It is easy to use nkf to check linefeed code and character encoding of text files on linux as follows: [cc]$ n […]
bash script to change directory
#!/bin/bash cd ~/FVCOM316/examples/inlet/run The name of this script is say “cd_test.sh.” This script will not […]
ffmpeg and ImageMagick on Scientific Linux 6.1 x86-64
To create a movie from images, “convert” and “ffmpeg” would be often used. “convert” is useful to create GIF a […]
Fortran数値計算(1)
拡散方程式を数値計算(差分方)によって陽的に解く 微分方程式を差分方程式に書き換えることで,解析解を求めることなく,加減乗除だけで微分方程式の近似解を求めることができる.ここでは熱現象や物質の拡散を表現する「拡散方程式」 […]
Fortran モジュール副プログラム(3),外部副プログラム
3.6 文字列を引数とするモジュール副プログラム 仮引数で character(*) と型宣言することで,任意の長さの文字列実引数に対応できる. 文字列変数 title の文字列長さの数値を知るには,組み込み関数lenを […]
Fortran モジュール副プログラム(2)
3.4 モジュール関数 関数はサブルーチンと類似しているが,通常,仮引数はintent(in)であり(引数は値の受け取りのみで,戻り値なし),関数が返す値は単一の変数である.実行文中に組み込み関数と同様に,直接関数を記述 […]