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.

 Akzeptierte Antwort

MathWorks Support Team
MathWorks Support Team am 17 Sep. 2018

0 Stimmen

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,:)

Weitere Antworten (0)

Kategorien

Produkte

Version

R2018a

Tags

Noch keine Tags eingegeben.

Community Treasure Hunt

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

Start Hunting!

Translated by