An array of strings has to be a cell array. That said:

s = [12 25 34 466 55]
strtrim(cellstr(num2str(s'))')
Answer from Peter on Stack Overflow
🌐
MathWorks
mathworks.com › matlabcentral › answers › 469519-convert-string-array-to-numeric-matrix-and-string-array
Convert String Array to Numeric matrix and string array - MATLAB Answers - MATLAB Central
June 30, 2019 - https://www.mathworks.com/matlabcentral/answers/469519-convert-string-array-to-numeric-matrix-and-string-array ... Hi! I have a 3 by 15 string matrix. I wish to extract the first and third row as numbers to be assigned to a numerical matrix, while extracting the second row as a row of strings, which are to be assigned to another matrix.
🌐
MathWorks
mathworks.com › matlab › language fundamentals › data types › data type conversion
str2num - Convert character array or string to numeric array - MATLAB
To convert nonscalar string arrays or cell arrays to numeric arrays, use the str2double function. Evaluation method, specified as "all" or "restricted". Setting evaluation method to "restricted" restricts accepted inputs for chr to basic math expressions. ... Output array, returned as a numeric ...
🌐
MathWorks
mathworks.com › matlab › language fundamentals › data types › data type conversion
Convert Numeric Values to Text - MATLAB & Simulink
To convert a number to a string that represents it, use the string function. ... The string function converts a numeric array to a string array having the same size.
🌐
MathWorks
mathworks.com › matlab › language fundamentals › data types › data type conversion
string, " " - String array - MATLAB
A string array that has only one ... using the + operator. If a string array represents numbers, then you can convert it to a numeric array using the double function....
Find elsewhere
🌐
Fanwang Econ
fanwangecon.github.io › M4Econ › amto › string › htmlpdfm › fs_string_strcat.html
Matlab Convert and Concatenate Numeric and String Arrays
June 22, 2021 - % Append Common Numbers cl_col_names_append = strcat(cl_col_names, '-String-Cell-With-Numeric-Array-', ... num2str(transpose(1:length(cl_col_names)))); disp(cl_col_names_append); {'zi=3:zr=0.70;zw=0.42-String-Cell-With-Numeric-Array-1'} {'zi=4:zr=0.23;zw=0.68-String-Cell-With-Numeric-Array-2'} {'zi=4:zr=0.72;zw=0.39-String-Cell-With-Numeric-Array-3'}
🌐
MathWorks
mathworks.com › matlabcentral › answers › 562355-converting-array-of-integer-to-one-string-character-of-arrays
converting array of integer to one string (character of arrays) - MATLAB Answers - MATLAB Central
July 9, 2020 - I want to convert this to one string, to array of characters, this means the output is '10101010101010101010101010101010101010 .........' , could anyone help me how can I do that in matlab? I used char=int2str(binary) but the size of char isn't 1X3200 , it's 9598 ..
🌐
MathWorks
mathworks.com › matlabcentral › answers › 328069-array-of-numbers-and-strings
array of numbers and strings - MATLAB Answers - MATLAB Central
March 4, 2017 - Sign in to answer this question. ... will create a 1x3 cell array of two numbers (in the first and third positions) and a string (for the operation).
🌐
MathWorks
mathworks.com › matlabcentral › answers › 761786-convert-string-array-to-numerical-vector
Convert string array to numerical vector - MATLAB Answers - MATLAB Central
March 3, 2021 - I have numbers as string array A that I'd like to convert to numerical vector B: A = ["01";"04";"12"]; B = [1; 4; 12]; I've tried with str2num but it seems to proceed only with string scalars ra...
🌐
MathWorks
mathworks.com › matlab › language fundamentals › data types › data type conversion
int2str - Convert integers to characters - MATLAB
string is recommended over int2str for combining numeric scalars with text. Use the + operator to combine strings and numeric values for improved readability. For additional information, see Alternative Functionality. chr = int2str(N) treats N as a matrix of integers and converts it to a character ...
🌐
MathWorks
mathworks.com › matlabcentral › answers › 217556-how-to-convert-string-to-array
how to convert string to array? - MATLAB Answers - MATLAB Central
May 19, 2015 - https://www.mathworks.com/matlabcentral/answers/217556-how-to-convert-string-to-array#comment_286387 ... This does not work for hex numbers.