concatenate a cell array(string) and a double array numeric

조회 수: 18 (최근 30일)
yasmine
yasmine 2012년 3월 28일
i have 2 arrays:
x = {'tom' 'sara' 'bob'} y = [ 1 2 3 ; 3 4 5 ; 1 4 2]
how can i concatenate x and y vertically with a single array with x as header?
  댓글 수: 1
Jan
Jan 2012년 3월 28일
This topic has been discussed already: http://www.mathworks.com/matlabcentral/answers/33087-how-to-combine-an-cell-array-and-a-double-array
Please do not double-post.

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

답변 (1개)

Andrei Bobrov
Andrei Bobrov 2012년 3월 28일
out = [x;num2cell(y)];
  댓글 수: 2
yasmine
yasmine 2012년 3월 28일
is there a way where we can remove the inverted comma in the answer.
Jan
Jan 2012년 3월 28일
The quote characters are not part of the array, but inserted when printing to the command window only. They show, that the included characters are a string, e.g. to distinguish '9' from 9.

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

카테고리

Help CenterFile Exchange에서 Cell Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by