Select rows and columns
조회 수: 95 (최근 30일)
이전 댓글 표시
Hello,
In attachment my dataset. I have to select the 3 first columns and the 8 first rows, all the data in it. How do I do this?
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2015년 6월 12일
편집: Azzi Abdelmalek
2015년 6월 12일
A(1:8,1:3)
Example
A=randi(9,10,5)
out=A(1:8,1:3)
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Import and Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!