reshaping and transposing question
    조회 수: 3 (최근 30일)
  
       이전 댓글 표시
    
So my teacher gave us this problem where there's an array
C=[1 7; 2 8; 3 9; 4 10; 5 11; 6 12]
What he wants us to do with this array is use the reshape function with transpose in a single command to output a row vector which equals
[1 4 7 10 2 5 8 11 3 6 9 12].
I understand how the reshape and transpose work together, but i have no idea how to change the order of the numbers with the two functions. Any suggestions?
댓글 수: 2
  Roger Stafford
      
      
 2015년 2월 22일
				Be courageous! Try various successive reshapes and transposes. It takes only a few, namely three, to do the trick.
  John D'Errico
      
      
 2015년 2월 22일
				Think about what order the elements are stored in memory. What do you know about this? Once you understand how MATLAB stores those elements, the reshape and transpose combination should be obvious.
답변 (2개)
  Image Analyst
      
      
 2015년 2월 23일
        Yep. I got it done with one reshape, and two transposes. Two lines of code and one intermediate variable created, which was the result of the reshape. A brilliant engineer like Savanna should be able to get it done in a few minutes. Keep in mind that MATLAB goes down rows in a column first, before it moves over to the next column. Hint: Look up the colon : operator, and the reshape() function of course.
댓글 수: 0
  Alan Silver
 2022년 4월 24일
        
      편집: Alan Silver
 2022년 4월 24일
  
      This one command composed of two reshapings and one tranpose will 
do exactly what is shown.  
D =   reshape(transpose(reshape(C,3,4) ),1,12) ;
Innermost  
reshape(C,3,4) gives  
[  1  4    7   10  
   2  5    8   11 
   3  6    9   12  ]  
then , transposing it  gives 
[ 
1    2  3   
4    5  6 
7    8   9  
10  11   12 ]  
Then, reshaping again   by 1 X 12  
gives 
[ 1 4 7 10 2 5 8  11 3 6 9 12 ]
댓글 수: 0
참고 항목
카테고리
				Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




