gtool5 Fortran 90/95 Library 1.0.0-rc5
日本語
Loading...
Searching...
No Matches
Functions/Subroutines
hsp1d.f90 File Reference

Fortran 77 compatibility wrapper for gtool_history HistoryPut (1D double precision) . More...

Go to the source code of this file.

Functions/Subroutines

subroutine hsp1d (vname, var, i)
 

Detailed Description

Fortran 77 compatibility wrapper for gtool_history HistoryPut (1D double precision)

.

Author
Shin-ichi TAKEHIRO, Yasuhiro MORIKAWA

Definition in file hsp1d.f90.

Function/Subroutine Documentation

◆ hsp1d()

subroutine hsp1d ( character(len=*)  vname,
double precision, dimension(i)  var,
integer  i 
)

Output a variable to history

Definition at line 23 of file hsp1d.f90.

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