필터 지우기
필터 지우기

How to remove empty fields from a struct?

조회 수: 11 (최근 30일)
MSani
MSani 2019년 6월 27일
답변: Stephen23 2019년 6월 28일
When I load a matlab file, I am getting a struct with fields as below:
a =
struct with fields:
bt: {[1×1 struct] [] [] [] [1×1 struct] [1×1 struct]}
I would like to delete the empty fields in between. How do I do that and save the file without changing any structure to it?
but I got this error:
Dot indexing is not supported for variables of this type.

답변 (1개)

Stephen23
Stephen23 2019년 6월 28일
a.bt(cellfun('isempty',a.bt)) = []

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by