gtool5 Fortran 90/95 ライブラリ 1.0.0-rc5
English
Loading...
Searching...
No Matches
hsp2r.f90
Go to the documentation of this file.
1!> @file hsp2r.f90
2!>
3!> @author Shin-ichi TAKEHIRO, Yasuhiro MORIKAWA
4!> @copyright Copyright (C) GFD Dennou Club, 2000-2026. All rights reserved. <br/>
5!> License is BSD-2-Clause. See [COPYRIGHT](@ref COPYRIGHT) in detail
6!>
7!> @en
8!> @brief Fortran 77 compatibility wrapper for gtool_history HistoryPut (2D single precision)
9!> @enden
10!>
11!> @ja
12!> @brief gtool_history Fortran 77 用インターフェース (HistoryPut, 2次元単精度)
13!> @endja
14!
15!>
16!> @en
17!> @brief Output a variable to history
18!> @enden
19!> @ja
20!> @brief ヒストリーに変数を出力する
21!> @endja
22!>
23subroutine hsp2r(vname,var,i,j)
24
26 character(len=*) :: vname ! 変数名
27 real :: var(i,j) ! 変数
28 integer :: i,j ! 各次元の大きさ
29
30 call historyput(vname,var)
31
32end subroutine hsp2r
subroutine hsp2r(vname, var, i, j)
Definition hsp2r.f90:24