how can i truncte a matrix?
조회 수: 1 (최근 30일)
이전 댓글 표시
how can i truncate matrix with 51*500 to 51*71?
댓글 수: 0
답변 (2개)
Dave B
2021년 11월 14일
편집: Dave B
2021년 11월 14일
Are you asking how to take a 51 x 500 matrix and remove all but the first 71 columns?
x = rand(51,500);
x = x(:,1:71); % read this as x("all rows", "columns 1 to 71")
댓글 수: 2
Dave B
2021년 11월 14일
the code above runs just fine:
x = rand(51,500);
x = x(:,1:71);
size(x)
The error indicates that the matrix has just one column:
a = rand(51,1); % this only has one column, how can I take the first 71 columns?
a(:,1:71)
Tina
2021년 11월 14일
if you have 51*500 try doing
a=zeros(51,500)
b=a(:,1:71)
and if you have 500*51
a=zeros(500,51)
b=a(1:71,:)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!