Update field value in structures?
3 次查看(过去 30 天)
显示 更早的评论
Hi.
I have structure L with field L0. L0 has two fields:H0 and H1.
H0=struct('h',[0,0],'Q_centroids',[-5,0,5,0],'Q_actions',[15,7,10],'Q_table',[0]);
H1=struct('h',[0,2],'Q_centroids',[1,0,pi/2,0],'Q_actions',[2,7,8],'Q_table',[2]);
L0=struct('H0',H0,'H1',H1);
L=struct('L0',L0);
relevant_L=L.L0;
relevant_L.H0.Q_centroids=[-pi/2,0,pi/2,0;1 5 4 2];
I want to update H0 and then save it in L. so i load L0(relevant_L=L.L0) then update it through the last line but new strcture is created(name:relevant_L).
i know we can do this by:
L.L0.H0.Q_centrids
but i want to change Q_centroids first by load L.L0 in another variable(relevant_L) and then change it.
Is it possible?
Thanks.
0 个评论
采纳的回答
Walter Roberson
2019-2-10
If the question is whether it is possible to create an "alias" to something inside a structure, such that assigning to the name will have the effect of changing the part inside the structure -- if that is the question, then the answer is NO, that cannot be done in MATLAB with struct
That said, something that would look like that can be done in MATLAB. It would require that L0 would be an object of a class derived from handle and that the class had a H0 property. In that particular configuration, then updating relevant_L.H0 would have the effect of updating L.L0.H0 .
2 个评论
Walter Roberson
2019-2-10
Yes, you can use
STRUCTURENAME.(CHARACTER_VECTOR)
to access the field in STRUCTURENAME that the CHARACTER_VECTOR evaluates to. Your example of A={'L0'} and L.(a{1}) is fine, and is the same as L.('L0') which will evaluate as if you had used L.L0
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!