How to delete rows from an array?
조회 수: 3 (최근 30일)
이전 댓글 표시
Given an array of double of size 929x1, I want to obtain a reduced double array with the first 549 lines of the previous one. In short, given a double-sized array of 929x1, we want to eliminate the last 380 lines. How can I do??
댓글 수: 0
채택된 답변
Arvind Sathyanarayanan
2019년 3월 1일
편집: Arvind Sathyanarayanan
2019년 3월 1일
Set the rows you want to delete to null. Example:
x(550:end,:)=[];
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!