strings
Create string array without characters.
📝Syntax
C = strings()
C = strings(m)
C = strings(m, n)
C = strings(m, n, ... , p)
C = strings(sz)
📥Input Arguments
Parameter Description
m, n, ... , p dimensions of the string array to create.
sz a vector of integer values (dimensions of the cell to create).
📤Output Arguments
Parameter Description
C a string array
📄Description

strings returns a cell array of empty matrices.

💡Examples
A = eye(2, 4);
sz = size(A)
C = strings(sz)
🔗See Also
cellisstring
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub