How to filter a structure array based on a numeric value from a field?

Hi,
I have a structure array with different fields and I am trying to implement filters for it.
For fields with char variables, I am able to filter the structure with the following code.
trips_filter = trips(strcmp({trips.ser_id},'Arki'));
For fields with numeric values, I have not been able to find a way to filter it. I tried several ways to do it with no success, for example the following.
trips_filter2 = trips(trips.dir_id == 1);
For that command Im getting the 'Error using == Too many input arguments'.
Any help?
Thanks

 채택된 답변

Stephen23
Stephen23 2020년 3월 26일
편집: Stephen23 2022년 2월 23일
You will need to concatenate the comma-separated list into one numeric array, e.g.:
trips([trips.dir_id] == 1);
% ^ ^ Concatenate !
Read about how this works:

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Structures에 대해 자세히 알아보기

제품

릴리스

R2019b

태그

질문:

2020년 3월 25일

편집:

2022년 2월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by