how to add the first row all the odd columns by step of 2 odd columns
    조회 수: 3 (최근 30일)
  
       이전 댓글 표시
    
I want to add 1 and 3 the 2 and 1. Then moving to second row I want to add 1 and 1 then 4 and 5. Similarly I want to, in general, using using loop for an image
a = [...    
       1     2     3     1
       1     4     1     5
       5     8     5     9
       1     9     2     1]
댓글 수: 2
채택된 답변
  madhan ravi
      
      
 2018년 9월 1일
        
      편집: madhan ravi
      
      
 2018년 9월 1일
  
      Try this:
a1=a(:,1:2:end) %for odd columns 
a2=a(:,2:2:end) %for even columns
oddcolumns=sum(a1,2)
evencolumns=sum(a2,2)
a
댓글 수: 15
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

