HyperWorks Solvers

ISTRNG

ISTRNG

Previous topic Next topic No expanding text in this topic  

ISTRNG

Previous topic Next topic JavaScript is required for expanding text JavaScript is required for the print function  

Subroutine Type

Utility/General

Definition

Used for integer-to-character conversions.  It receives an integer number and returns the corresponding string.

Use

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

Calling Syntax

Fortran

CALL ISTRNG(NUMBER, STRING, LENGTH, ISTAT)

 

C

c_istrng(number, string, length, istat)

 

Python

istat = py_istrng(number, string, length)

 

MATLAB

istat = m_istrng(number, string, length)

Input Arguments

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.

See Also:

Data Access Subroutines