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

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

Go to the source code of this file.

Functions/Subroutines

subroutine hsp2r (vname, var, i, j)
 

Detailed Description

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

Author
Shin-ichi TAKEHIRO, Yasuhiro MORIKAWA

Definition in file hsp2r.f90.

Function/Subroutine Documentation

◆ hsp2r()

subroutine hsp2r ( character(len=*)  vname,
real, dimension(i,j)  var,
integer  i,
integer  j 
)

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

Definition at line 23 of file hsp2r.f90.

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