Loading...
Searching...
No Matches
Functions/Subroutines
hsaati.f90 File Reference

Go to the source code of this file.

Functions/Subroutines

subroutine hsaati (vname, atname, value, i)
 

Function/Subroutine Documentation

◆ hsaati()

subroutine hsaati ( character(len=*), intent(in)  vname,
character(len=*), intent(in)  atname,
integer, dimension(i), intent(in)  value,
integer  i 
)

Definition at line 14 of file hsaati.f90.

15 !
16 !== 機能
17 !
18 ! ヒストリー, 変数に属性をつける.
19 !
20 !== 備考
21 !
22 ! VNAME が空の場合にはヒストリーのグローバル属性として扱われる.
23 !
25 character(len=*), intent(in):: vname ! 変数名
26 character(len=*), intent(in):: atname ! 属性名
27 integer, intent(in):: value(i) ! 変数
28 integer :: i ! 属性の次元数
29
30 call historyaddattr(vname, atname, value)
31