MATLAB: Is there a way to combine a cell array element and a string array into 1 string

data typesstring arrays

I need to add a '<' sign in front of a number so that it looks like '<9'
I have a column of character arrays with the numbers and a Column of equal number of '<' as cell arrays. is this possible?

Best Answer

strcat('<', YourCharacterColumn)