I want to print cell array A on screen horizontally by text(X,Y,A)
where X and Y are x and y co-ordinates and A is cell array. At the
moment it is printing vertically on screen.
some of the solutions
a={'ab','cde','fghi'};
as1=char(a) % note: a char mat
as2=cat(2,a{:}) % note: no spaces between cells
as3=sprintf('%s|',a{:}); % the most versatile
as3(end)=''
us