strvcat function - concatenation:
The function strvcat will concatenate it vertically, that means that it will generate a column vector of the strings.
>> strvcat(first,last)
ans =
Bird
house
>> size(ans)
ans =
2 5
Note that the strvcat will pad with additional blanks automatically, in this situation to make both the strings having length of 5.