- how delete empty fields in a struct
- How to remove empty struct fields [ ] from a group a struct fields ?
構造体から欠損データを削除する
조회 수: 3 (최근 30일)
이전 댓글 표시
下記のような空([])の値を含む構造体Aから、空のフィールドを取り除いた構造体Bを作成したいです。
どのようにすれば、よろしいでしょうか
댓글 수: 0
답변 (1개)
Atsushi Ueno
2021년 11월 5일
편집: Atsushi Ueno
2021년 11월 5일
【類似の質問】
A = struct('a',"abc",'b',"def",'c',[])
fn = fieldnames(A);
B = rmfield(A, fn(cellfun(@(c) isempty(A.(c)), fn)))
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!