nag_enum_value_to_name (x04nbc) returns the name of the NAG enumeration member given the enumeration member's value.
nag_enum_value_to_name (x04nbc) takes an integer argument, which must be the value of a NAG enumeration member and returns a string which is the name of that member (e.g., "Nag_ColMajor", "Nag_LogNormal", etc.). If the input value does not correspond to a NAG enumeration member then the function returns .
The reverse process of converting from enumeration member name to enumeration member value is also available using
nag_enum_name_to_value (x04nac).
Converting enumeration members to and from name and value may be of use when saving a set of problem arguments to file or reading problem arguments from a file for use in an application. In the case of saving problem arguments, any enumeration members to be saved should be saved using their names to be subsequently read as strings. nag_enum_value_to_name (x04nbc) can be used to get enumeration member names for writing.
None.
Not applicable.
Not applicable.
None.
This example takes a set of NAG enumeration members and checks that the value used has a name that matches the member name.
None.