Member of the string class.
c = num2str(a)
Converts the content of a numeric matrix to strings. Complex numbers are treated as such.
| Name | Description |
| a | Specifies a numeric matrix. |
| Name | Description |
| c | Returns a string equivalent to a. If a is a matrix, c returns each row of a as a string. |
A = [34.333+123456.4i, -38]
C = num2str(A)