how to select first 23 rows and 25 columns from a 25 X 25 matrix in matlab
조회 수: 52 (최근 30일)
이전 댓글 표시
access a matrix from another matrix which is having sifferent dimension. i.e how to select first 23 rows and 25 columns from a 25 X 25 matrix in matlab
댓글 수: 0
채택된 답변
Grzegorz Knor
2013년 8월 30일
a = rand(25);
b = a(1:23,:);
댓글 수: 2
Jan
2013년 8월 30일
@Nirmala: Such fundamental questions are explained exhaustively in the Getting Started chapters of the documentation. It is recommended to read them carefully, because a forum cannot teach all these basics.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!