필터 지우기
필터 지우기

clearing an instance of a structure variable

조회 수: 7 (최근 30일)
PN
PN 2011년 1월 24일
hello!
I was wondering whether it is possible to clear an instance on a structure variable, as in the following example.
a = struct('name',0,'age'',0)
a(1) = struct('name','jack','age',20);
a(2) = struct('name','fred','age',28);
So my question would be: is there a way to clear either a(1), for instance, such that the final length of 'a' becomes 1, instead of 2?

채택된 답변

Kenneth Eaton
Kenneth Eaton 2011년 1월 24일
You can remove an element from a structure array the same way you can remove an element from any other type of array:
a(1) = []; % Set the first element to empty
Or:
a = a(2); % Index the second element and reassign it to a

추가 답변 (1개)

Sean de Wolski
Sean de Wolski 2011년 1월 24일

카테고리

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

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by