i need to know how to select values from a 2x365 array
조회 수: 1 (최근 30일)
이전 댓글 표시
hey i have a 2x365 array and i know that if you use column_1= data (1:365) to select the data in the first column but how would i input it to get all of the data for the secound column
댓글 수: 0
채택된 답변
Walter Roberson
2019년 10월 2일
No, if you have a 2 x 365 array, then column_1 = data(1:365) would get you the first 182 full columns and the first row of the 183'rd column as well. To get the first column you would use data(:,1) which will get you a 2 x 1 vector. The second column would be data(:,2) which would get you a 2 x 1 vector.
I suspect you are looking for rows rather than columns. row_1 = data(1,:); row_2 = data(2,:); and each of those would be 1 x 365.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!