Place string in front of vector
1 view (last 30 days)
Show older comments
I have a vector of numbers: num = [1:16]; I would like to place the character: 'B' in front of each number i that vector without using the for loop.
Are there any tricks to do this quickly?
The result should look like this:
[B1 B2 B3 B4........]
thanks.
1 Comment
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 26 Oct 2012
Edited: Azzi Abdelmalek
on 26 Oct 2012
[ '[' sprintf('B%d ',1:16) ']']
See Also
Categories
Find more on Numeric Types 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!