clearing an instance of a structure variable
Show older comments
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?
Accepted Answer
More Answers (1)
Sean de Wolski
on 24 Jan 2011
a = a(2)
Categories
Find more on Structures in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!