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

Fortran 77 compatible interface for gtool_history HistoryAddAttr (double precision) . More...

Go to the source code of this file.

Functions/Subroutines

subroutine hsaatd (vname, atname, value, i)

Detailed Description

Fortran 77 compatible interface for gtool_history HistoryAddAttr (double precision)

.

Author
Shin-ichi TAKEHIRO, Yasuhiro MORIKAWA

Definition in file hsaatd.f90.

Function/Subroutine Documentation

◆ hsaatd()

subroutine hsaatd ( character(len=*), intent(in) vname,
character(len=*), intent(in) atname,
double precision, 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 hsaatd.f90.

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