How to extract data from MATLAB code?
조회 수: 1 (최근 30일)
이전 댓글 표시
My data consists of 389 rows and 40 columns like (size(gather) 389 40). I want to extract 40 columns and rows from 105 to 381 (105:381) with new dimensions (size(gather) 276 40). How I can do it?
댓글 수: 0
채택된 답변
Selim Gullulu
2021년 2월 17일
Hi,
if your initial matrix is M,
The new matrix,N can be created with:
N=M(105:381, : )
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Time Series에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!