ID : 542
Conversion of String Type Data and Other Data Types
String type data can convert data of all types.
Converting Numeric Value Data into string type Data
Numeric data are converted into string in decimal expression.
For single precision real number type and double precision real number type, scientific notation is selected if the number of characters is less in scientific notation.
E.g.
- 0.012
- 1.2E-5
Converting Position Data into string type Data
Position data are converted in the format of "type symbol + ( element, element, element, ,,)."
E.g.
- P(10, 3.3, 5, 0, 0, 0, -1)
- V(10000, 0, 50)
In addition, strings of the same format can be converted from string type data into position data.
ID : 542