Add text column to data
    조회 수: 1 (최근 30일)
  
       이전 댓글 표시
    
Dear whom regards, I'd like to add a text column (on the left side) to my given data (10x3 double) generated through my loop. So, currently I have the following format of data
1 1 1
1 1 2
1 1 3
1 1 4
1 2 1
1 3 1...
So, my desired data format is
    COORDINATE 1 1 1
    COORDINATE 1 1 2
    COORDINATE 1 1 3
    COORDINATE 1 1 4
    COORDINATE 1 2 1
    COORDINATE 1 3 1...
Any tips would be grateful. K-Won
댓글 수: 0
답변 (1개)
  Azzi Abdelmalek
      
      
 2017년 5월 30일
        A=[1 1 4
1 2 1
1 3 1]
B=repmat({'coordinate'},size(A,1),1)
out=[B num2cell(A)]
댓글 수: 0
참고 항목
카테고리
				Help Center 및 File Exchange에서 String에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!