% LearningStrVec.m % % The 1st class of learning strings and vectors in Matlab % created by YW, 2016/1/1 str1='this is all new to me' str2='I have no clue what I am doing' myword='this is all new to me' disp(str1) x='red character'; y='blue character'; xy=strcat(x,y) xy=strvcat(x,y)