MATLAB: Add 2 type char matrix strings into a greater one

manipulatematrixstring

A=<86x26 char>
B=<6x19 char>
C=151x27 char>
How I create the matrix ABC that is the matrix A after comes the matrix B and than the matrix C. ABC=<243x??? char>

Best Answer

ABC=char(A, B, C)