Member of the string class.
c = str2mat(a, b, ...)
Converts strings into a matrix of characters. LabVIEW pads strings with blank spaces if necessary to make all strings the same length. You can specify an unlimited number of input strings.
| Name | Description |
| a | Specifies a string. |
| b | Specifies a string. |
| Name | Description |
| c | Returns a character matrix equivalent to the input strings. |
A = '1.23E-4+34.333j'
B = 'hello'
C = str2mat(A, B)