ISTRNG

Utility/GeneralUsed for integer-to-character conversions and receives an integer number and returns the corresponding string.

Use

This function can be called by any user-defined subroutine.

Format

Fortran Calling Syntax
CALL ISTRNG(NUMBER, STRING, LENGTH, ISTAT)
C/C++ Calling Syntax
c_istrng(number, string, length, istat)
Python Calling Syntax
[string, istat] = py_istrng(number)
MATLAB Calling Syntax
[string, istat] = m_istrng(number)

Attributes

NUMBER
[integer]
A variable that specifies the integer to be converted.
STRING
[character]
A string that represents a number.
LENGTH
[integer]
A variable that returns the number of non-blank characters in the converted string.

Output Values

ISTAT
[integer]
Indicates the success or failure of the call ISTRNG.