How can I make struct with existing variables?
57 次查看(过去 30 天)
显示 更早的评论
采纳的回答
Matt J
2014-8-22
编辑:Matt J
2014-8-22
>> clear
>> a=1; b=2; c=3;
>> s=whos;
>> C=cell2struct({s.name}.',{s.name})
C =
a: 'a'
b: 'b'
c: 'c'
>> structvars(C,0); %copy/paste the output below to the command line
ans =
C.a = a;
C.b = b;
C.c = c;
更多回答(3 个)
Guillaume
2014-8-22
s = struct('alpha', alpha, 'beta', beta, 'gamma', gamma);
doc struct
2 个评论
Guillaume
2014-8-22
You could dynamically create a structure with 30 field names that are the names of the variables, however I would urge to think whether it's really what you want. How are you going to then use that structure if the field names are created arbitrarily. I would advise against this as your code may easily break in the future because a hardcoded field is not there anymore.
If that's really what you want to do, then structvars from the other answer (you have to download it), or the following function will do it:
function s = variables2struct(varargin)
s = struct;
for var = 1:nargin
s.(genvarname(inputname(var), fieldnames(s))) = varargin{var};
end
end
Adam
2014-8-22
编辑:Adam
2014-8-22
myStruct.alfa = alfa;
myStruct.beta = beta;
etc.
Or
myStruct = struct( 'alfa', alfa, 'beta', beta );
4 个评论
Adam
2014-8-22
I could try to give some help further along this line, but I think potentially either of Matt J's solutions would work better so unless neither of them do I'll leave it.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!