Access data in table - how to chose a range of columns indexed by cell
5 次查看(过去 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})
0 个评论
采纳的回答
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.
0 个评论
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!