gtool5 Fortran 90/95 ライブラリ 1.0.0-rc5
English
Loading...
Searching...
No Matches
Functions/Subroutines
hsp3d.f90 File Reference

gtool_history Fortran 77 用インターフェース (HistoryPut, 3次元倍精度) More...

Go to the source code of this file.

Functions/Subroutines

subroutine hsp3d (vname, var, i, j, k)
 

Detailed Description

gtool_history Fortran 77 用インターフェース (HistoryPut, 3次元倍精度)

Author
Shin-ichi TAKEHIRO, Yasuhiro MORIKAWA

Definition in file hsp3d.f90.

Function/Subroutine Documentation

◆ hsp3d()

subroutine hsp3d ( character(len=*)  vname,
double precision, dimension(i,j,k)  var,
integer  i,
integer  j,
integer  k 
)

ヒストリーに変数を出力する

Definition at line 23 of file hsp3d.f90.

24
26 character(len=*) :: vname ! 変数名
27 double precision :: var(i,j,k) ! 変数
28 integer :: i,j,k ! 各次元の大きさ
29
30 call historyput(vname,var)
31