Place string in front of vector

조회 수: 1 (최근 30일)
Quy
Quy 2012년 10월 26일
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
Matt J
Matt J 2012년 10월 26일
편집: Matt J 2012년 10월 26일
I hope you're not trying to use EVAL to create separate variables with auto-generated names B1, B2,... That is a Notoriously Bad Thing To Do.

댓글을 달려면 로그인하십시오.

채택된 답변

Matt J
Matt J 2012년 10월 26일
result = arrayfun(@(i) ['B',num2str(i)] , num , 'uni',0);

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2012년 10월 26일
편집: Azzi Abdelmalek 2012년 10월 26일
[ '[' sprintf('B%d ',1:16) ']']

카테고리

Help CenterFile Exchange에서 Numeric Types에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by