select only rows and not columns

조회 수: 7 (최근 30일)
andrea vivas
andrea vivas 2021년 4월 22일
답변: Walter Roberson 2025년 1월 28일
Does anybody knows how to select only rows and not columns? I'm trying to select all the first values of each column, is that possible?

답변 (2개)

Rushil
Rushil 2025년 1월 28일
Hi Andrea
From the attached image, it seems that you are running the following piece of code:
March_01_2021 = MarchVacc(:,2:51)
What this code does, is select all rows, and all columns with indices from 2 to 51. Thus, the output is a table of size 24 x 50 (since the number of rows in the table may be 24). In order to select a specific row to view, you may pass the index of that row as an input. Here is a snippet that does that:
idx = 1; % the row number to be viewed
March_01_2021 = MarchVacc(idx,:) % second input is ':' to allow viewing all columns of that row
More details about indexing into tables can be found at the link below:
Hope it helped you out.
larush

Walter Roberson
Walter Roberson 2025년 1월 28일
March_01_2021 = MarchVacc(1,2:51)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by