I have a 20x1 vertical matrix. I want to take the averages of the pairs in order and display them in another matrix. How?
이전 댓글 표시
To elaborate. I want to average the first and second numbers, third and fourth numbers, etc.. and display them again in a 10x1 matrix.
채택된 답변
추가 답변 (1개)
Honglei Chen
2012년 6월 28일
편집: Honglei Chen
2012년 6월 28일
x = rand(20,1);
y = transpose(mean(reshape(x,2,10)))
카테고리
도움말 센터 및 File Exchange에서 Data Types에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!