Clear all fields of a struct

48 ビュー (過去 30 日間)
Karl
Karl 2014 年 3 月 26 日
コメント済み: Azzi Abdelmalek 2014 年 3 月 26 日
Hi,
I have a struct with a number of fields that I want populate, and then store, each iteration through a loop. I want the struct to be empty and available each iteration. Is there a function to clear all the fields? Or do I just declare the whole thing again?
I tried setting each feild individually to [], like
myStruct.a = [];
myStruct.b = [];
But it's actually faster to declare the whole thing new each iteration, as in:
myStruct = struct('a', [], 'b', []);
Or maybe there's a better approach all together?
Cheers, Karl

採用された回答

Karl
Karl 2014 年 3 月 26 日
A colleague suggested this:
myStruct = structfun(@(x) [], myStruct, 'UniformOutput', false);
It's about the same speed-wise, maybe a little faster on average. But it's nice and neat :)
  1 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2014 年 3 月 26 日
clearing your variable doesn't make your code faster, maybe you need to pre-allocate
myStruct = structfun(@(x) zeros(1,100), myStruct, 'UniformOutput', false);

サインインしてコメントする。

その他の回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 3 月 26 日
編集済み: Azzi Abdelmalek 2014 年 3 月 26 日
%example
a.b=1
a.c=2
a.d=3
%----------------
f=fields(a)
for k=1:numel(f)
a.(f{k})=[];
end
  1 件のコメント
Karl
Karl 2014 年 3 月 26 日
編集済み: Karl 2014 年 3 月 26 日
Thanks for the reply. This approach does work, but it takes more or less the same amount of time as re-declaring the structure.
Surely there's a better way than resortimg to loops?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by