how to generate subsequent combination of elements
    조회 수: 3 (최근 30일)
  
       이전 댓글 표시
    
I have sequence t=1 3 4 4 6 2 2 2 2 1 4. I want to generate combination of two subsequent elements. i.e. 13 34 44 46 62 22 22 22 21 14. how to do it
댓글 수: 0
채택된 답변
  John D'Errico
      
      
 2016년 11월 15일
        
      편집: John D'Errico
      
      
 2016년 11월 15일
  
      What does the number 13 mean? 13 is just a symbol. In base 10, it means the number (1*10+3). So creating your vector is trivial.
s = 10*t(1:end-1) + t(2:end);
Learn to use vector operations in MATLAB. Your code will benefit greatly.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

