How to make string from matrix?

2 views (last 30 days)
Lolipop
Lolipop on 19 Dec 2014
Commented: Lolipop on 19 Dec 2014
Hello everyone.. Can anoyne help me with this.. I have matrix with dimension 662x2 for example
y=[111 20;123 43;117 89;....] on so on
and form that matrix I need to make string but in every new row to put '#' so matrix y should be converted in string like this
yy='111 20#123 43#117 89#..' and so on
Thank you!

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 19 Dec 2014
A=magic(4)
B=[num2cell(A');repmat({'#'},1,size(A,1))]
out=strjoin(cellfun(@num2str,B(:)','un',0))

More Answers (1)

Star Strider
Star Strider on 19 Dec 2014
This works:
yy = sprintf('%d %d#', y');

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!