필터 지우기
필터 지우기

Extract all columns from a table where the column names "start with" a string

조회 수: 218 (최근 30일)
How can I extract all columns from a table where the column names "start with" a string?
For example, in
mytable = array2table(NaN(4,5));
mytable.Properties.VariableNames = {'A1', 'A2', 'B1', 'F2', 'F4'};
How would I extract all the "F*" columns in to a new table?

채택된 답변

Walter Roberson
Walter Roberson 2019년 8월 28일
mask = startsWith( mytable.Properties.VariableNames, 'F');
Fcols = mytable(:,mask);

추가 답변 (1개)

Arnaud Delorme
Arnaud Delorme 2022년 5월 27일
편집: Arnaud Delorme 2022년 5월 27일
colNames = fieldnames(mytable);
[~,inds] = intersect(colNames, { 'A1' 'A2' } );
mytable = mytable(:,sort(inds));
  댓글 수: 1
Walter Roberson
Walter Roberson 2022년 5월 27일
This would not get you anything that mytable(:, { 'A1' 'A2' } ) would not give, other than preserving relative order of variables.

댓글을 달려면 로그인하십시오.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by