MATLAB: How to create PolarAxes with GUIDE

figurepolaraxes

The question is pretty simple. Is it possible to create a PolarAxes using the GUIDE tool? I know it is possible to do so 'programmaticaly' with the polaraxes command, but being able to create it using GUIDE would be great.

Best Answer

Sorry, polaraxes were added after GUIDE last had a feature update.
You can have your GUIDE code call polaraxes() parented against the appropriate container, and you can put the resulting handle into the handles structure. Or if you put it in the CreateFcn callback for the appropriate container then as long as you gave it a tag, GUIDE would notice the object and put it into handles automatically.