필터 지우기
필터 지우기

What is the best way to create a 10x11 matrix from a 2x100

조회 수: 1 (최근 30일)
Chockalingam Kumar
Chockalingam Kumar 2017년 8월 23일
댓글: Chockalingam Kumar 2017년 8월 24일
First column of the 2X100 matrix is a sequence of 10 numbers repeating 10 times. The final matrix required is a 10x11 matrix where first column is the sequence of the 10 numbers that repeat, the remaining 10 columns are the respective numbers from the 2nd column of the original 2x100 matrix

채택된 답변

Image Analyst
Image Analyst 2017년 8월 23일
Sounds a lot like homework but I'll take you at your word it's not because you didn't tag it as homework.
first10 = m(1:10, 1);
column2 = reshape(m(:, 2), 10, [])
output = [first10, column2]
where m is your 100 by 2 matrix.

추가 답변 (1개)

Andrei Bobrov
Andrei Bobrov 2017년 8월 23일
Let A - your matrix [100 x 2]
b = sortrows(A);
out = [unique(b(:,1)), reshape(b(:,2),[],10)];

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by