mat2x2 = [1 2; 3 4]';  
cell2x2 = {1 2; 3 4}'; 
v=mat2x2';             
v2 = (v')';            
foo = 1.';             
mat2x2 = [1 2; 3 4].';  
cell2x2 = {1 2; 3 4}.'; 
v=mat2x2.';             
v2 = (v.').';           
foo = 1..';             
bar = v.''.'.'';        
sq1 = 'a single quote string';
sq2 = ...
' abcd ';         
sq3 = ['a','bc']; 
sq4 = {'a','bc'}; 
dq1 = "a double string";
dq2 = ...
" abcd ";         
dq3 = ["a","bc"]; 
c2 = {'a','bc'}'; 
s = ['a','bc']';  
s = s';           
x = [(s')', ' xyz ', 'a single quote in a string'', escape \', two quotes in a string'''''];  
s2 = "abc\"def""ghi";      
s3 = (["abc", "defg"]')';  
s4 = "abc"!;               
b = true' + false';