필터 지우기
필터 지우기

Access data in table - how to chose a range of columns indexed by cell

조회 수: 4 (최근 30일)
Is it possible in Matlab to select a range (not single) of columns in a table indexed by cells and not integers?
I was thinking something like table(:,{'varname1'} : {varname2})

채택된 답변

Greg
Greg 2017년 1월 5일
See the documentation. "Index Using a Logical Expression" section of the following page:
https://www.mathworks.com/help/matlab/matlab_prog/access-data-in-a-table.html#zmw57dd0e25752
I'll take a swing that what you really want is all columns between varname1 and varname2 (whether inclusive or not). Your best be in that case is to do some string matching to turn varname1 and varname2 into column indices, then use the colon operator in the indexing expression.

추가 답변 (1개)

turquoise_squid
turquoise_squid 2017년 1월 6일
So yeah, what I usually do is this
% cellfind = @(string)(@(cell_contents)(strcmp(string,cell_contents))); % logical_cells = cellfun(cellfind('this is string'),vars.Properties.VariableNames)
I find this complicated though :)
thought there would be an easier way.

카테고리

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