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

Fortran 77 compatible interface for gtool_history HistoryAddAttr (integer) . More...

Go to the source code of this file.

Functions/Subroutines

subroutine hsaati (vname, atname, value, i)
 

Detailed Description

Fortran 77 compatible interface for gtool_history HistoryAddAttr (integer)

.

Author
Shin-ichi TAKEHIRO, Yasuhiro MORIKAWA

Definition in file hsaati.f90.

Function/Subroutine Documentation

◆ hsaati()

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

Add an attribute to a history or variable.

If VNAME is empty, the attribute is treated as a global attribute of the history.

Definition at line 27 of file hsaati.f90.

28 !
30 character(len=*), intent(in):: vname ! 変数名
31 character(len=*), intent(in):: atname ! 属性名
32 integer, intent(in):: value(i) ! 変数
33 integer :: i ! 属性の次元数
34
35 call historyaddattr(vname, atname, value)
36