Difference between [ handles.comp1 ]=axes and [ comp1=axes ]
1 次查看(过去 30 天)
显示 更早的评论
What is the difference between defining an axis using {handles.comp1=axes} and {comp1= axes}
I'm guessing in the first case the axes has its handle stored in the handles structure and in the second it is not stored into it?
0 个评论
采纳的回答
Walter Roberson
2012-5-25
Yes, that is the only difference. And it would be perfectly valid to use
comp1 = axes;
handles.comp1 = comp1;
3 个评论
Walter Roberson
2012-5-25
Be careful on "handles." compared to "handle."
The code I gave shows that an axes handle can be copied around like any other numeric value. You can store it in any numeric form that is convenient to you, in any kind of double precision variable.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Object Programming 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!