필터 지우기
필터 지우기

How can you extract multiple fields of a structure matching the same logical index condition?

조회 수: 2 (최근 30일)
Let's say I have a structure point with fields x, y and z. I would like to create a structure subpoint which matches point.z>minz.
I can do: subpoint.x=point.x(point.z>minz); subpoint.y=point.y(point.z>minz); subpoint.z=point.z(point.z>minz);
but I was wondering if there was a way of using logical indexing to all fields implicitly (subpoint=point(point.z>minz) doesn't work).
The reason I'm asking is that in my actual example I have a lot of fields and extracting each one individually is taking a bit of time so I was hoping that a single line equivalent, if it exists, might make things go faster.
Thanks,
Matthew

채택된 답변

Walter Roberson
Walter Roberson 2017년 3월 8일
mask = point.z>minz;
subpoint = structfun(@(F) F(mask), point, 'uniform', 0)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by