Combining a text (cell) vector with a number (double) vector...?

조회 수: 6 (최근 30일)
Aaron
Aaron 2012년 8월 27일
I have two 3504x1 vectors that I need to combine to have one matrix with two columns, where the first column is one of my two vectors and the second column is the other. One vector is made up of text/cell data (e.g. "1580X-V 12.47") and one is "double" type (numbers).
When I try:
C = [A; B]
It just returns A to me...
Please help!
Thanks! Aaron

답변 (1개)

Sean de Wolski
Sean de Wolski 2012년 8월 27일
If you have the Statistics Toolbox, you can use the dataset class for this:
c = cellstr(('helloworld')')
x = (1:10)';
DS = dataset(c,x,'VarNames',{'CellData','NumericData'})
Else just call num2cell on your numeric data.
  댓글 수: 1
Walter Roberson
Walter Roberson 2012년 8월 27일
In particular, [A, num2cell(B)]
Notice I used comma rather than semi-colon, as you want two columns.

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

카테고리

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