Generate a single string from a matrix (or cell)

2 次查看(过去 30 天)
Hi. I have a vector A that is [1:5]' and also I have a string 'Hi'. (I just use a of length of 5 for simplicity, but can be large) (1) how can I generate a matrix B in such a way
Hi 1
Hi 2
Hi 3
Hi 4
Hi 5
(2) How can I convert matrix B to a 'single' string C as it is (i.e. after each Hi there is a space and after each number there is an enter (mew line character). In other words string C is
Hi 1
Hi 2
Hi 3
Hi 4
Hi 5
Note that Bi is a matrix or cell array, but C is only a string.

采纳的回答

Walter Roberson
Walter Roberson 2017-12-9
With R2017a or later,
strjoin( "Hi " + (1:5).', newline )
For R2016b you can use
strjoin( string('Hi ') + (1:5).', newline )

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by