Why am I getting an error when trying to linear index into my table?
>> load patients
>> T = table(Gender,Smoker,Height,Weight);
>> T(:,4)(T.Smoker==1)
Error: ()-indexing must appear last in an index expression.

 採用された回答

MathWorks Support Team
MathWorks Support Team 2018 年 9 月 17 日

0 投票

The syntax being used is trying to index into a table that has already been indexed into. Instead, index only once to get the desired behavior:
>> T(T.Smoker==1, 4)
Alternatively, this can be broken up into two lines of code:
>> temp = T(:,4);
>> temp(T.Smoker==1,:)

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMatrix Indexing についてさらに検索

製品

リリース

R2018a

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by