TOC PREV NEXT INDEX

OMFset_name_real_val

Synopsis


INTEGER FUNCTION OMFset_name_real_val(object_id,
. name,
. dval)
#include <avs/omf.inc>
INTEGER object_id(OIDSIZ)
INTEGER name
DOUBLE PRECISION dval

Description

For a complete description of this function, see OMget_real_val and OMset_real_val.

Arguments

object_id
The id of an object, expressed as an integer.
name
The name of one of object_id's immediate subobjects.
dval
The subobject's value, expressed in double precision.

Returned value

The status code (see OMget_real_val and OMset_real_val ).

Examples


#include <avs/omf.inc>
INTEGER parent_object(OIDSIZ)
DOUBLE PRECISION value
...
value = 0.75
IF (OMFset_name_real8_val(parent_object,
. OMFstr_to_name('fval'),
. _value) .NE. 1)
. PRINT*,'Error setting value of object

See Also

OMFget_name_real8_val

TOC PREV NEXT INDEX